import type { Meta, StoryObj } from "@storybook/react"; import { Icon } from "@appsmith/wds"; /** * Icon is a component that just displays an icon. */ declare const meta: Meta; export default meta; type Story = StoryObj; export declare const Main: Story; /** * The Icon component comes with three sizes * * - xSmall = 14px * - small = 16px * - medium = 24px * - large = 32px */ export declare const Sizes: Story; /** * You can also pass a custom icon to the Icon component. */ export declare const CustomIcon: Story; export declare const AllIcons: Story;