@ant-design/use-emotion-css
v1.0.4
Published
A gadget that combines emotion and antd token
Downloads
8,266
Readme
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>
);
};