From eb55ea510159f328c1abef91ef9cb855d7e1c54f Mon Sep 17 00:00:00 2001 From: Jean-Michel FRANCOIS Date: Tue, 27 Aug 2024 17:46:09 +0200 Subject: [PATCH] chore: commit formatting to trigger the CI --- packages/design-system/src/components/Button/Button.tsx | 4 ++-- .../src/components/Button/variations/ButtonPrimary.tsx | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/design-system/src/components/Button/Button.tsx b/packages/design-system/src/components/Button/Button.tsx index 73a3cce3e13..fc751486e24 100644 --- a/packages/design-system/src/components/Button/Button.tsx +++ b/packages/design-system/src/components/Button/Button.tsx @@ -1,10 +1,10 @@ import { forwardRef, Ref } from 'react'; +import { AvailableSizes, ButtonVariantType } from './Primitive/ButtonPrimitive'; +import ButtonDestructive, { ButtonDestructivePropsType } from './variations/ButtonDestructive'; import { ButtonPrimary, ButtonPrimaryPropsType } from './variations/ButtonPrimary'; import ButtonSecondary, { ButtonSecondaryPropsType } from './variations/ButtonSecondary'; import ButtonTertiary, { ButtonTertiaryPropsType } from './variations/ButtonTertiary'; -import ButtonDestructive, { ButtonDestructivePropsType } from './variations/ButtonDestructive'; -import { AvailableSizes, ButtonVariantType } from './Primitive/ButtonPrimitive'; type Primary = ButtonVariantType<'primary', ButtonPrimaryPropsType>; type Secondary = ButtonVariantType< diff --git a/packages/design-system/src/components/Button/variations/ButtonPrimary.tsx b/packages/design-system/src/components/Button/variations/ButtonPrimary.tsx index f842f596661..8da14d02cf9 100644 --- a/packages/design-system/src/components/Button/variations/ButtonPrimary.tsx +++ b/packages/design-system/src/components/Button/variations/ButtonPrimary.tsx @@ -1,4 +1,5 @@ import { forwardRef, Ref } from 'react'; + import ButtonPrimitive, { AvailableSizes, BaseButtonProps } from '../Primitive/ButtonPrimitive'; import styles from './ButtonPrimary.module.scss';