fleet/frontend/components/Graphic/Graphic.stories.tsx
Marko Lisica 8162d052bf
Icons improvements (making frontend consistent with Figma component library) (#14185)
# Checklist for submitter

If some of the following don't apply, delete the relevant line.

- [ ] Manual QA for all new/changed functionality

---------

Co-authored-by: Gabriel Hernandez <ghernandez345@gmail.com>
2023-10-31 16:06:38 +00:00

16 lines
302 B
TypeScript

import { Meta, StoryObj } from "@storybook/react";
import Graphic from "./";
const meta: Meta<typeof Graphic> = {
title: "Components/Graphic",
component: Graphic,
args: { name: "empty-queries" },
};
export default meta;
type Story = StoryObj<typeof Graphic>;
export const Basic: Story = {};