ContentCardFooter
A footer component for ContentCard.@coinbase/cds-web@8.13.6
ImportSourceView source codeStorybookView StorybookFigmaView Figma
import { ContentCardFooter } from '@coinbase/cds-web/cards/ContentCard'
Related components
Basic Example
Loading...
Live Codefunction Example() { return ( <VStack bordered borderRadius="400" maxWidth={375} padding={2}> <ContentCardFooter> <IconCounterButton count={20} icon="heart" /> <IconCounterButton count={40} icon="comment" /> <IconCounterButton count={32} icon="wireTransfer" /> </ContentCardFooter> </VStack> ); }