From e6e00314cf7964316ee037ca3e3f50a1b2df29c4 Mon Sep 17 00:00:00 2001 From: William Kelley Date: Fri, 10 May 2024 14:56:39 -0400 Subject: [PATCH] chore: add missing storybook component --- packages/tokens/.storybook/components.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/packages/tokens/.storybook/components.tsx b/packages/tokens/.storybook/components.tsx index 6357c04b..db23ed15 100644 --- a/packages/tokens/.storybook/components.tsx +++ b/packages/tokens/.storybook/components.tsx @@ -61,3 +61,19 @@ export const BoxShadowSwatch = function ShadowSwatch( ); }; + +export const BorderSwatch = function BorderSwatch( + props: React.ComponentProps +) { + return ( +
+ +
+ ); +};