UNPKG

@fidely-ui/react

Version:

Fidely UI is a modern, beautifully crafted React design system powered by Ark UI and Panda CSS, delivering accessible and themeable components for building exceptional web apps

9 lines (8 loc) 651 B
import * as React from 'react'; import { type ComponentProps } from '@fidely-ui/styled-system/types'; declare const StyledGroup: import("@fidely-ui/styled-system/types").StyledComponent<React.ForwardRefExoticComponent<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & import("@ark-ui/react").PolymorphicProps>, import("@fidely-ui/styled-system/recipes").GroupVariantProps>; type GroupBaseProps = ComponentProps<typeof StyledGroup>; export interface GroupProps extends GroupBaseProps { } export declare const Group: React.ForwardRefExoticComponent<Omit<GroupProps, "ref"> & React.RefAttributes<HTMLDivElement>>; export {};