@datalayer/core
Version:
[](https://datalayer.io)
19 lines (18 loc) • 578 B
TypeScript
import type { StoryObj } from '@storybook/react-vite';
declare const meta: {
title: string;
component: ({ displayName, variant, size, square, style, }: {
displayName?: string;
variant?: "marble" | "beam" | "pixel" | "sunset" | "ring" | "bauhaus" | undefined;
size?: number;
square?: boolean;
style?: object;
}) => import("react/jsx-runtime").JSX.Element;
tags: string[];
parameters: {
layout: string;
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const SimpleAvatar: Story;