我想使用antd theme tokens来样式化我的自定义组件?可能有一种感情似的方式:
// style.ts
export default createStyles((token) => ({
foo: {
color: token.colorPrimary,
}
})
// index.tsx
import styles from './style';
const FooBar = () => {
return (
<div className={styles.foo}>
FooBar
</div>
);
};
或者也许有更好的方法来做到这一点?除了useToken和use in style之外,文档中几乎没有任何内容。
1条答案
按热度按时间kt06eoxx1#
如何通过控制组件来使用antd主题token?
Antd有非常有用的主题标记。像您的设计系统一样定制。我们也可以避免手动样式化。我们可以通过主题标记控制组件。非常有用。
对于override theme token,你可以在这里查看文档ant theme token override
请看我的例子
example