Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
599 Bytes
import { Box } from "../src"
export default {
title: "Layout / Center",
decorators: [
(Story: any) => (
<Box p="10">
<Story />
</Box>
),
],
}
export { CenterBasic as Basic } from "compositions/examples/center-basic"
export { CenterWithAbsolute as Absolute } from "compositions/examples/center-with-absolute"
export { CenterWithIcons as Icons } from "compositions/examples/center-with-icons"
export { CenterWithInline as Inline } from "compositions/examples/center-with-inline"
export { CenterWithSquare as Square } from "compositions/examples/center-with-square"