UNPKG

@yamada-ui/react

Version:

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

20 lines (19 loc) 891 B
import { ThemeProps } from "../../core/system/index.types.js"; import { Component } from "../../core/components/index.types.js"; import "../../core/index.js"; import { GroupStyle } from "./group.style.js"; import { FlexProps } from "../flex/flex.js"; import "../../index.js"; import * as react844 from "react"; //#region src/components/group/group.d.ts interface GroupProps extends Omit<FlexProps, "grow">, ThemeProps<GroupStyle> {} declare const GroupPropsContext: react844.Context<Partial<GroupProps> | undefined>, useGroupPropsContext: () => Partial<GroupProps> | undefined; /** * `Group` is a component that groups and attaches multiple elements together. * * @see https://yamada-ui.com/docs/components/group */ declare const Group: Component<"div", GroupProps>; //#endregion export { Group, GroupProps, GroupPropsContext, useGroupPropsContext }; //# sourceMappingURL=group.d.ts.map