1.0.4
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> ); };
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
use-emotion-css
A gadget that combines emotion and antd token