UNPKG

@yamada-ui/react

Version:

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

21 lines (17 loc) 801 B
"use client"; const require_create_component = require('../../core/components/create-component.cjs'); const require_flex = require('../flex/flex.cjs'); const require_wrap_style = require('./wrap.style.cjs'); //#region src/components/wrap/wrap.tsx const { PropsContext: WrapPropsContext, usePropsContext: useWrapPropsContext, withContext } = require_create_component.createComponent("wrap", require_wrap_style.wrapStyle); /** * `Wrap` is a component that has `wrap` set on `Flex`. It inherits convenient style shorthand from `Flex`. * * @see https://yamada-ui.com/docs/components/wrap */ const Wrap = withContext(require_flex.Flex)(); //#endregion exports.Wrap = Wrap; exports.WrapPropsContext = WrapPropsContext; exports.useWrapPropsContext = useWrapPropsContext; //# sourceMappingURL=wrap.cjs.map