File size: 750 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import type { Meta } from "@storybook/react-vite"
import { Box } from "../src"
export default {
title: "Components / Image",
decorators: [
(Story) => (
<Box p="10">
<Story />
</Box>
),
],
} satisfies Meta
export { ImageBasic as Basic } from "compositions/examples/image-basic"
export { ImageCircular as Circular } from "compositions/examples/image-circular"
export { ImageWithAspectRatio as AspectRatio } from "compositions/examples/image-with-aspect-ratio"
export { ImageWithFit as Fit } from "compositions/examples/image-with-fit"
export { ImageWithHeight as Height } from "compositions/examples/image-with-height"
export { ImageWithHtmlHeight as HtmlHeight } from "compositions/examples/image-with-html-height"
|