import { Box, Text } from "../components"; import { styled } from "./theme"; import { customScrollbars } from "./scrollbars"; import type { Meta, StoryObj } from "@storybook/react"; const meta: Meta = { title: "Theme/Scrollbars", }; export default meta; const CustomBox = styled(Box, customScrollbars); export const Default: StoryObj = { render: () => ( This container should have nice custom scrollbars ), };