@ant-design/use-emotion-css
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

use-emotion-css

A gadget that combines emotion and antd token

import { useEmotionCss } from '@ant-design/use-emotion-css';
import React from 'react';

export default () => {
  const className = useEmotionCss(({ token }) => {
    return {
      color: token.colorPrimary,
      display: 'flex',
      justifyContent: 'center',
      gap: 24,
      padding: 24,
      flexDirection: 'column',
    };
  });
  const blockClassName = useEmotionCss(({ token }) => {
    return {
      backgroundColor: token.colorPrimary,
      width: 12,
      height: 12,
      borderRadius: 12,
    };
  });
  return (
    <div className={className}>
      <div
        style={{
          display: 'flex',
          alignItems: 'center',
          gap: 8,
        }}
      >
        <div className={blockClassName} />
        <span>Hello World</span>
      </div>
    </div>
  );
};

Readme

Keywords

Package Sidebar

Install

npm i @ant-design/use-emotion-css

Weekly Downloads

2,060

Version

1.0.4

License

ISC

Unpacked Size

8.62 kB

Total Files

8

Last publish

Collaborators

  • madccc
  • afc163
  • vthinkxie
  • zombiej
  • chenshuai2144
  • vagusx
  • arvinxx