UNPKG

@metamask/design-system-react-native

Version:
15 lines 430 B
import type { ImageProps } from "react-native/index.js"; /** * Blockies component props. */ export type BlockiesProps = { /** * Required address used as a unique identifier to generate the Blockies. */ address: string; /** * Optional prop to control the size of the Blockies. */ size?: number; } & Omit<ImageProps, 'source' | 'width' | 'height'>; //# sourceMappingURL=Blockies.types.d.mts.map