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) 837 B
import { ThemeProps } from "../../core/system/index.types.js"; import { Component, HTMLStyledProps } from "../../core/components/index.types.js"; import "../../core/index.js"; import { MarkStyle } from "./mark.style.js"; import "../../index.js"; import * as react818 from "react"; //#region src/components/mark/mark.d.ts interface MarkProps extends HTMLStyledProps<"mark">, ThemeProps<MarkStyle> {} declare const MarkPropsContext: react818.Context<Partial<MarkProps> | undefined>, useMarkPropsContext: () => Partial<MarkProps> | undefined; /** * `Mark` is a component that emphasizes a specific part of the text. * * @see https://yamada-ui.com/docs/components/mark */ declare const Mark: Component<"mark", MarkProps>; //#endregion export { Mark, MarkProps, MarkPropsContext, useMarkPropsContext }; //# sourceMappingURL=mark.d.ts.map