UNPKG

@yamada-ui/react

Version:

React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion

20 lines (16 loc) 689 B
"use client"; const require_create_component = require('../../core/components/create-component.cjs'); const require_em_style = require('./em.style.cjs'); //#region src/components/em/em.tsx const { PropsContext: EmPropsContext, usePropsContext: useEmPropsContext, withContext } = require_create_component.createComponent("em", require_em_style.emStyle); /** * `Em` is a component that represents emphasized text. By default, it renders a `em` element. * * @see https://yamada-ui.com/docs/components/em */ const Em = withContext("em")(); //#endregion exports.Em = Em; exports.EmPropsContext = EmPropsContext; exports.useEmPropsContext = useEmPropsContext; //# sourceMappingURL=em.cjs.map