Update report.api.md

Signed-off-by: Charles de Dreuille <charles.dedreuille@gmail.com>
This commit is contained in:
Charles de Dreuille
2024-11-26 14:36:12 +00:00
parent 6b6573da7e
commit e991add9f4
+8 -8
View File
@@ -930,19 +930,19 @@ export const boxSprinkles: ((
>;
flexWrap?:
| (
| 'wrap'
| 'nowrap'
| 'wrap'
| {
xs?: 'wrap' | 'nowrap' | undefined;
sm?: 'wrap' | 'nowrap' | undefined;
md?: 'wrap' | 'nowrap' | undefined;
lg?: 'wrap' | 'nowrap' | undefined;
xl?: 'wrap' | 'nowrap' | undefined;
'2xl'?: 'wrap' | 'nowrap' | undefined;
xs?: 'nowrap' | 'wrap' | undefined;
sm?: 'nowrap' | 'wrap' | undefined;
md?: 'nowrap' | 'wrap' | undefined;
lg?: 'nowrap' | 'wrap' | undefined;
xl?: 'nowrap' | 'wrap' | undefined;
'2xl'?: 'nowrap' | 'wrap' | undefined;
}
| undefined
)
| ResponsiveArray<2 | 1 | 3 | 4 | 5 | 6, 'wrap' | 'nowrap' | null>;
| ResponsiveArray<2 | 1 | 3 | 4 | 5 | 6, 'nowrap' | 'wrap' | null>;
padding?:
| (
| 'none'