ds-smart-ui
Version:
Smart UI is a React component library that helps you build accessible and responsive web applications.
13 lines (11 loc) • 473 B
TypeScript
import { Meta, StoryObj } from '@storybook/react';
import { default as AvatarWithLabel } from './AvatarWithLabel';
declare const meta: Meta<typeof AvatarWithLabel>;
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;
export declare const WithIcon: Story;
export declare const WithImage: Story;
export declare const WithCustomSize: Story;
export declare const WithCustomColor: Story;
export declare const WithLabelPosition: Story;