Replies: 1 comment
-
Hello @acatzk, if you want to add TailwincCSS classes to specific components, you can overwrite the component: const Option = ({ ...props, innerProps }) => <components.Option
{...props}
innerProps={{
...innerProps,
className: 'text-lg'
}}
/>; There also exist other ways, e.g. twin.macro with support for CSS-in-JS libraries. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I feel like the default style on this cannot integrate to tailwind and only used the build in style or add styles object... and not working on tailwindcss style
Beta Was this translation helpful? Give feedback.
All reactions