From 7ea79b2ad4aab951a7f291c1018cf4882d85319f Mon Sep 17 00:00:00 2001 From: MT Lewis Date: Fri, 17 Apr 2026 10:07:00 +0100 Subject: [PATCH] ui: add `style` to `CardOwnProps` Signed-off-by: MT Lewis --- packages/ui/report.api.md | 1 + packages/ui/src/components/Card/types.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/packages/ui/report.api.md b/packages/ui/report.api.md index 04a146ce2c..e7ccca62df 100644 --- a/packages/ui/report.api.md +++ b/packages/ui/report.api.md @@ -793,6 +793,7 @@ export type CardOwnProps = Pick< | 'target' | 'rel' | 'download' + | 'style' >; // @public diff --git a/packages/ui/src/components/Card/types.ts b/packages/ui/src/components/Card/types.ts index c874ec8720..83daf2de08 100644 --- a/packages/ui/src/components/Card/types.ts +++ b/packages/ui/src/components/Card/types.ts @@ -87,6 +87,7 @@ export type CardOwnProps = Pick< | 'target' | 'rel' | 'download' + | 'style' >; /** @public */