From 0da1b62dc1a861d9fea87f312d16c1fb426befd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20V=C3=A1clav=C3=ADk?= Date: Tue, 17 Feb 2026 16:25:56 +0100 Subject: [PATCH] fix(suite): Fix type --- packages/components/src/components/CardList/CardListItem.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/components/src/components/CardList/CardListItem.tsx b/packages/components/src/components/CardList/CardListItem.tsx index 30f1df438a..525cf1c0ca 100644 --- a/packages/components/src/components/CardList/CardListItem.tsx +++ b/packages/components/src/components/CardList/CardListItem.tsx @@ -1,10 +1,11 @@ +import type { Padding } from '../../utils/frameProps'; import { Row } from '../Flex/Flex'; import { GhostContainer, type GhostContainerProps } from '../GhostContainer/GhostContainer'; export const cardListItemPaddingTypes = ['normal', 'small'] as const; export type CardListItemPaddingType = (typeof cardListItemPaddingTypes)[number]; -const paddingMap: Record = { +const paddingMap: Record = { normal: { vertical: 16, horizontal: 20 }, small: { vertical: 8, horizontal: 12 }, };