Sha256: 89bed047407232b80a300beee1c909e347f502f788bbde4a7f420942e6cb1446
Contents?: true
Size: 529 Bytes
Versions: 2
Compression:
Stored size: 529 Bytes
Contents
import React from 'react'; import { GlobalProps } from '../utilities/globalProps'; declare type ImageType = { alt?: string; aria?: { [key: string]: string; }; className?: string; data?: { [key: string]: string; }; id?: string; onError?: () => void; size?: "xs" | "sm" | "md" | "lg" | "xl"; rounded?: boolean; transition?: "blur" | "fade" | "scale"; url?: string; } & GlobalProps; declare const Image: (props: ImageType) => React.ReactElement; export default Image;
Version data entries
2 entries across 2 versions & 1 rubygems