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.
26 lines
703 B
26 lines
703 B
import React from 'react'; |
|
import { ComponentStory, ComponentMeta } from '@storybook/react'; |
|
import CategoryIcon from '../components/ui/CategoryIcon/CategoryIcon'; |
|
|
|
export default { |
|
title: 'owncast/Components/Category icon', |
|
component: CategoryIcon, |
|
parameters: {}, |
|
} as ComponentMeta<typeof CategoryIcon>; |
|
|
|
const Template: ComponentStory<typeof CategoryIcon> = args => <CategoryIcon {...args} />; |
|
|
|
export const Game = Template.bind({}); |
|
Game.args = { |
|
tags: ['games', 'fun'], |
|
}; |
|
|
|
export const Chat = Template.bind({}); |
|
Chat.args = { |
|
tags: ['blah', 'chat', 'games', 'fun'], |
|
}; |
|
|
|
export const Conference = Template.bind({}); |
|
Conference.args = { |
|
tags: ['blah', 'conference', 'games', 'fun'], |
|
};
|
|
|