UNPKG

@yamada-ui/react

Version:

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

19 lines (18 loc) 822 B
import { ThemeProps } from "../../core/system/index.types.js"; import { Component, HTMLStyledProps } from "../../core/components/index.types.js"; import "../../core/index.js"; import { EmStyle } from "./em.style.js"; import "../../index.js"; import * as react887 from "react"; //#region src/components/em/em.d.ts interface EmProps extends HTMLStyledProps<"em">, ThemeProps<EmStyle> {} declare const EmPropsContext: react887.Context<Partial<EmProps> | undefined>, useEmPropsContext: () => Partial<EmProps> | undefined; /** * `Em` is a component that represents emphasized text. By default, it renders a `em` element. * * @see https://yamada-ui.com/docs/components/em */ declare const Em: Component<"em", EmProps>; //#endregion export { Em, EmProps, EmPropsContext, useEmPropsContext }; //# sourceMappingURL=em.d.ts.map