From efad846e9a7d508eccc269f10b743d4508f3f69c Mon Sep 17 00:00:00 2001 From: Charles de Dreuille Date: Sun, 15 Dec 2024 23:29:58 +0000 Subject: [PATCH] Update report.api.md Signed-off-by: Charles de Dreuille --- packages/canon/report.api.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/packages/canon/report.api.md b/packages/canon/report.api.md index cba0983972..247965bc05 100644 --- a/packages/canon/report.api.md +++ b/packages/canon/report.api.md @@ -267,10 +267,7 @@ export interface GridProps extends SpaceProps, ColorProps { } // @public (undocumented) -export const Icon: (props: { - name: IconNames; - size?: number; -}) => React_2.JSX.Element; +export const Icon: (props: IconProps) => React_2.JSX.Element; // @public (undocumented) export type IconMap = Partial>; @@ -295,6 +292,12 @@ export type IconNames = | 'plus' | 'trash'; +// @public (undocumented) +export type IconProps = { + name: IconNames; + size?: number; +}; + // @public (undocumented) export const Inline: ForwardRefExoticComponent< InlineProps & RefAttributes