From df30d2bfb178a69b867b0c327be0eb48e851f0f4 Mon Sep 17 00:00:00 2001 From: Gagan Date: Thu, 8 Aug 2024 11:04:59 -0600 Subject: [PATCH] add option in xs prop --- src/col/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/col/types.ts b/src/col/types.ts index 1bda4e98..05556de3 100644 --- a/src/col/types.ts +++ b/src/col/types.ts @@ -1,7 +1,7 @@ export interface ColProps extends React.HTMLAttributes { className?: string; children?: React.ReactNode; - xs?: 6 | 8 | 10 | 12; + xs?: 4 | 6 | 8 | 10 | 12; sm?: 2 | 4 | 5 | 6 | 8 | 10 | 12; md?: 4 | 6 | 8 | 10 | 12; lg?: 6 | 8 | 10;