mirror of https://github.com/portainer/portainer
				
				
				
			
		
			
				
	
	
		
			47 lines
		
	
	
		
			986 B
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			986 B
		
	
	
	
		
			TypeScript
		
	
	
| import { Meta, Story } from '@storybook/react';
 | |
| import { List } from 'lucide-react';
 | |
| 
 | |
| import { Link } from '@@/Link';
 | |
| import { IconProps } from '@@/Icon';
 | |
| 
 | |
| import { DashboardItem } from './DashboardItem';
 | |
| 
 | |
| const meta: Meta = {
 | |
|   title: 'Components/DashboardItem',
 | |
|   component: DashboardItem,
 | |
| };
 | |
| export default meta;
 | |
| 
 | |
| interface StoryProps {
 | |
|   value: number;
 | |
|   icon: IconProps['icon'];
 | |
|   type: string;
 | |
| }
 | |
| 
 | |
| function Template({ value, icon, type }: StoryProps) {
 | |
|   return <DashboardItem value={value} icon={icon} type={type} />;
 | |
| }
 | |
| 
 | |
| export const Primary: Story<StoryProps> = Template.bind({});
 | |
| Primary.args = {
 | |
|   value: 1,
 | |
|   icon: List,
 | |
|   type: 'Example resource',
 | |
| };
 | |
| 
 | |
| export function WithLink() {
 | |
|   return (
 | |
|     <Link to="example.page">
 | |
|       <DashboardItem value={1} icon={List} type="Example resource" />
 | |
|     </Link>
 | |
|   );
 | |
| }
 | |
| 
 | |
| export function WithChildren() {
 | |
|   return (
 | |
|     <DashboardItem value={1} icon={List} type="Example resource">
 | |
|       <div>Children</div>
 | |
|     </DashboardItem>
 | |
|   );
 | |
| }
 |