From 4956d536aa8756af1df6f090d4759517a8825460 Mon Sep 17 00:00:00 2001 From: Charles de Dreuille Date: Thu, 28 Nov 2024 11:44:17 +0000 Subject: [PATCH] Update Box.tsx Signed-off-by: Charles de Dreuille --- packages/canon/src/components/Box/Box.tsx | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/packages/canon/src/components/Box/Box.tsx b/packages/canon/src/components/Box/Box.tsx index 4febc5c0e0..960220a949 100644 --- a/packages/canon/src/components/Box/Box.tsx +++ b/packages/canon/src/components/Box/Box.tsx @@ -19,19 +19,6 @@ import { boxSprinkles } from './sprinkles.css'; import { base } from './box.css'; import { BoxProps } from './types'; -// /** -// * Properties for {@link Box} -// * -// * @public -// */ -// export type BoxProps = Parameters[0] & -// Omit< -// React.AllHTMLAttributes, -// keyof Parameters[0] -// > & { -// as?: keyof JSX.IntrinsicElements; -// }; - /** @public */ export const Box = (props: BoxProps) => { const { as = 'div', className, style, ...rest } = props;