import { Avatar } from '../Avatar';
import { Heading } from '../Heading';
import { Icon } from '../Icon';
import { IconButton } from '../IconButton';
import { CardList } from './CardList';
import type { CardListProps } from './defs';
export default {
component: CardList,
title: 'UI/CardList',
argTypes: {},
};
const cardItem = (
Colm Tuite
);
export const Usage = (args: CardListProps) => (
{cardItem}
{cardItem}
);
export const Active = (args: CardListProps) => (
Colm Tuite
);
export const Clickable = (args: CardListProps) => (
{cardItem}
{cardItem}
);
export const WithAction = (args: CardListProps) => (
}
aria-label="Action"
css={{ px: '$0', color: '$intentsBase10' }}
/>
}
>
Colm Tuite
);
export const WithOnClick = (args: CardListProps) => (
Colm Tuite
);