/* eslint-disable no-console */
import { Button, FoldableCard } from '..';
export default { title: 'Unaudited/FoldableCard' };
export const Default = () => (
These are its contents
);
export const Smooth = () => (
These are its contents
And some more
);
export const WithLongHeader = () => (
These are the card's contents.
);
export const WithLongHeaderAndHiddenSummary = () => (
These are the card's contents.
);
export const Compact = () => (
I'm tiny! :D
);
export const Disabled = () => (
You can't see me!
);
export const Highlighted = () => (
I'm highlighted!
);
export const WithCustomActionIcon = () => (
These are its contents
);
export const WithCustomSummary = () => (
This is the main content of the card.
);
export const WithMultilineHeader = () => (
This is a multiline foldable card
with a summary component & a expanded summary component
}
summary={
}
expandedSummary={
}
>
Nothing to see here. Keep walking!
);
export const WithClickOpenCloseActions = () => (
Nothing to see here. Keep walking!
);