@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) • 795 B
JavaScript
"use client";
const require_create_component = require('../../core/components/create-component.cjs');
const require_separator_style = require('./separator.style.cjs');
//#region src/components/separator/separator.tsx
const { PropsContext: SeparatorPropsContext, usePropsContext: useSeparatorPropsContext, withContext } = require_create_component.createComponent("separator", require_separator_style.separatorStyle);
/**
* `Separator` is a component that represents a division between elements.
*
* @see https://yamada-ui.com/docs/components/separator
*/
const Separator = withContext("hr")();
//#endregion
exports.Separator = Separator;
exports.SeparatorPropsContext = SeparatorPropsContext;
exports.useSeparatorPropsContext = useSeparatorPropsContext;
//# sourceMappingURL=separator.cjs.map