| "use client" | |
| import { type HTMLChakraProps, chakra } from "../../styled-system" | |
| export interface EmProps extends HTMLChakraProps<"em"> {} | |
| export const Em = chakra("em", { | |
| base: { | |
| fontStyle: "italic", | |
| }, | |
| }) | |
| "use client" | |
| import { type HTMLChakraProps, chakra } from "../../styled-system" | |
| export interface EmProps extends HTMLChakraProps<"em"> {} | |
| export const Em = chakra("em", { | |
| base: { | |
| fontStyle: "italic", | |
| }, | |
| }) | |