Stories scaffolding

This commit is contained in:
Hazem Krimi
2025-03-18 17:12:38 +01:00
parent 13f88a09b3
commit dadf638631
55 changed files with 596 additions and 1189 deletions
+3 -3
View File
@@ -1,19 +1,19 @@
import { Wrapper } from './styles';
import { Text } from '..';
import Text from '../Text';
import { Check } from '../../assets';
type CheckBoxProps = {
className?: string;
color?: 'client' | 'productOwner' | 'developer' | 'admin';
label: string;
name: string;
checked: boolean;
onClick: () => void;
};
const CheckBox = ({
label,
name,
checked,
onClick,
...props