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

11 lines (10 loc) 515 B
import { HTMLStyledProps } from '@fidely-ui/styled-system/jsx'; import { type GridItemProperties } from '@fidely-ui/styled-system/patterns'; export interface GridItemProps extends Omit<HTMLStyledProps<'div'>, keyof GridItemProperties>, GridItemProperties { } /** * GridItem component * * Provides a flexible box layout system using Panda's gridItem pattern. */ export declare const GridItem: import("react").ForwardRefExoticComponent<Omit<GridItemProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;