@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) • 702 B
JavaScript
"use client";
const require_create_component = require('../../core/components/create-component.cjs');
const require_mark_style = require('./mark.style.cjs');
//#region src/components/mark/mark.tsx
const { PropsContext: MarkPropsContext, usePropsContext: useMarkPropsContext, withContext } = require_create_component.createComponent("mark", require_mark_style.markStyle);
/**
* `Mark` is a component that emphasizes a specific part of the text.
*
* @see https://yamada-ui.com/docs/components/mark
*/
const Mark = withContext("mark")();
//#endregion
exports.Mark = Mark;
exports.MarkPropsContext = MarkPropsContext;
exports.useMarkPropsContext = useMarkPropsContext;
//# sourceMappingURL=mark.cjs.map