import { ComponentMeta, ComponentStory } from '@storybook/react' import { ProposalWalletVote } from '@dao-dao/stateful/proposal-module-adapter/adapters/DaoProposalSingle/components/ProposalWalletVote' import { WALLET_PROFILE_DATA } from '@dao-dao/storybook' import { ProfileVoteCard } from './ProfileVoteCard' export default { title: 'DAO DAO / packages / stateless / components / profile / ProfileVoteCard', component: ProfileVoteCard, } as ComponentMeta const Template: ComponentStory = (args) => (
) export const Default = Template.bind({}) Default.args = { votingPower: 32.4, daoName: 'Dog Dao', profile: { loading: false, data: WALLET_PROFILE_DATA, }, vote: , } Default.parameters = { design: { type: 'figma', url: 'https://www.figma.com/file/ZnQ4SMv8UUgKDZsR5YjVGH/DAO-DAO-2.0?node-id=317%3A31004', }, }