UNPKG

@saleor/macaw-ui

Version:

Saleor's UI component library

14 lines (12 loc) 396 B
import { StoreAvatarVariants } from './Store.css'; import { PropsWithBox } from '../../Box'; import { DataAttributes } from '../../types'; export type StoreAvatarProps = PropsWithBox<DataAttributes & { className?: string; initials?: string; src?: string; }> & StoreAvatarVariants; export declare const Store: { (props: StoreAvatarProps): JSX.Element; displayName: string; };