From 4eac289722980588ce7e1ac695c0566265a25941 Mon Sep 17 00:00:00 2001 From: Fredrik Thorsson Date: Tue, 15 Oct 2024 09:54:11 +0200 Subject: [PATCH] feat(SW-439): remove columns key from interface --- components/TempDesignSystem/Grids/Stackable/stackable.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/TempDesignSystem/Grids/Stackable/stackable.ts b/components/TempDesignSystem/Grids/Stackable/stackable.ts index 65dd90fed..293197e26 100644 --- a/components/TempDesignSystem/Grids/Stackable/stackable.ts +++ b/components/TempDesignSystem/Grids/Stackable/stackable.ts @@ -4,6 +4,4 @@ import type { VariantProps } from "class-variance-authority" export interface StackableGridProps extends React.HTMLAttributes, - VariantProps { - columns?: 1 | 2 | 3 -} + VariantProps {}