UNPKG

nj10-custom-components

Version:
44 lines (43 loc) 850 B
import { MyLabel } from "../components/MyLabel"; const meta = { title: 'UI/labels/MyLabel', component: MyLabel, tags: ['autodocs'], parameters: { layout: 'centered', }, argTypes: { size: { control: 'inline-radio' } } }; export default meta; export const Basic = { args: { label: 'Basic label' } }; export const AllCaps = { args: { label: 'All Caps label', allCaps: true, } }; export const Secondary = { args: { label: 'Secondary label', color: 'text-secondary' } }; export const CustomColor = { args: { label: 'Custom Color label', fontColor: '#5517ac' } }; export const CustomBackgroundColor = { args: { label: 'Custom Color label', fontColor: 'skyblue', backgroundColor: 'black' } };