import React from "react"; import { ComponentMeta, ComponentStory } from "@storybook/react"; import { Timeline, Avatar, AvatarList, Card } from "../"; export default { title: "Components/Timeline", component: Timeline } as ComponentMeta; const Template: ComponentStory = (args) => ; const items = [ {color: 'azure', icon: , title: '+1150 Followers', description: 'You’re getting more and more followers, keep it up!', time: '10 hrs ago'}, {color: 'red', icon: , title: '+3 New Products were added!', description: 'Congratulations', time: '2 hrs ago'}, {color: 'success', icon: , title: 'Database backup completed!', description: 'Download the latest backup', time: '1 day ago'}, {color: 'facebook', icon: , title: '+290 Page Likes', description: 'This is great, keep it up!', time: '1 day ago'}, {color: 'teal', icon: , title: '+3 Friend Requests', description: , time: '2 days ago'}, ] export const Default = () => { return ( ) } export const Simple = () => { return ( ) }