fix(grid): export GridItem component for external usage [skip-ci] (#27904)

This commit is contained in:
Chirag Madlani 2026-05-05 17:54:22 +05:30 committed by GitHub
parent c70c147d52
commit db3a4f2f73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -102,7 +102,7 @@ export interface GridItemProps extends HTMLAttributes<HTMLDivElement> {
const clamp = (value: number, min: number, max: number) =>
Math.min(Math.max(value, min), max);
const GridItem = ({
export const GridItem = ({
span = GRID_COLUMNS,
start,
className,