@papernote/ui
Version:
A modern React component library with a paper notebook aesthetic - minimal, professional, and expressive
15 lines • 536 B
TypeScript
import React from 'react';
import { BoxProps } from './Box';
export interface GridItemProps extends Omit<BoxProps, 'colSpan'> {
/** Grid column span (1-12) */
colSpan?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
/** Grid row span (1-6) */
rowSpan?: 1 | 2 | 3 | 4 | 5 | 6;
}
/**
* GridItem component for items within a Grid layout.
* Provides grid-specific props like colSpan and rowSpan.
*/
export declare const GridItem: React.FC<GridItemProps>;
export default GridItem;
//# sourceMappingURL=GridItem.d.ts.map