You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/components/Badge/Badge.stories.tsx

34 lines
862 B

import { Meta } from '@storybook/react';
import { Badge, BadgeType, Props } from './Badge';
export default {
component: Badge,
title: 'Components/Badge',
argTypes: {
type: {
control: {
type: 'select',
options: ['success', 'danger', 'warn', 'info'],
},
},
},
} as Meta<Props>;
// : JSX.IntrinsicAttributes & PropsWithChildren<Props>
function Template({ type = 'success' }: Props) {
const message: Record<BadgeType, string> = {
success: 'success badge',
danger: 'danger badge',
warn: 'warn badge',
info: 'info badge',
successSecondary: 'successSecondary badge',
dangerSecondary: 'dangerSecondary badge',
warnSecondary: 'warnSecondary badge',
infoSecondary: 'infoSecondary badge',
};
return <Badge type={type}>{message[type]}</Badge>;
}
export const Example = Template.bind({});