@wonderflow/react-components
Version:
UI components from Wonderflow's Wanda design system
47 lines • 1.65 kB
TypeScript
import { PropsWithChildren } from 'react';
export declare type GridItemProps = PropsWithChildren<PropsWithClass<{
/**
* Make the item span the entire row.
*/
fullWidth?: boolean;
/**
* Set the explicit offsets (start/end) of the item across the grid columns.
* This props refers to the CSS `grid-column` property.
*
* Read more: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column
*/
column?: string;
/**
* Set the explicit offsets (start/end) of the item across the grid rows.
* This props refers to the CSS `grid-row` property.
*
* Read more: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
*/
row?: string;
}>>;
export declare const GridItem: import("react").ForwardRefExoticComponent<{
style?: Record<string, any> | undefined;
className?: string | undefined;
} & {
/**
* Make the item span the entire row.
*/
fullWidth?: boolean | undefined;
/**
* Set the explicit offsets (start/end) of the item across the grid columns.
* This props refers to the CSS `grid-column` property.
*
* Read more: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-column
*/
column?: string | undefined;
/**
* Set the explicit offsets (start/end) of the item across the grid rows.
* This props refers to the CSS `grid-row` property.
*
* Read more: https://developer.mozilla.org/en-US/docs/Web/CSS/grid-row
*/
row?: string | undefined;
} & {
children?: import("react").ReactNode;
} & import("react").RefAttributes<HTMLLIElement>>;
//# sourceMappingURL=grid-item.d.ts.map