Em
Used to mark text for emphasis.
The design system is a collection of UI elements
import { Em, Text } from "@chakra-ui/react"
export const EmBasic = () => {
return (
<Text>
The <Em>design system</Em> is a collection of UI elements
</Text>
)
}
import { Em } from "@chakra-ui/react"
<Text>
The <Em>design system</Em> is a collection of UI elements
</Text>