We're actively working on new components and features. Stay tuned! Head over to our GitHub to see what's coming next.
The Strong component semantically marks text as important by rendering it with strong importance using the HTML strong element.
This is a very important message.
import Strong from '@radui/ui/Strong' const StrongExample = () => ( <div className='text-gray-1000'> <p>This is a <Strong>very important</Strong> message.</p> </div> )
A component for semantically marking text as important by rendering it as a <strong> element with bold styling.
Prop | Type | Default |
---|---|---|
children | ReactNode | -- |
className | string | '' |
customRootClass | string | '' |