UNPKG

@payfit/unity-illustrations

Version:

21 lines (20 loc) 527 B
import { IllustrationAsset, BaseSvgAsset } from './types.js'; export type OpenLockAsset = IllustrationAsset<BaseSvgAsset & { readonly name: 'OpenLock'; }>; /** * OpenLock illustration asset * @example * ```tsx * import { Illustration } from '@payfit/unity-illustrations' * import OpenLock from '@payfit/unity-illustrations/assets/OpenLock' * * <Illustration * illustration={OpenLock} * alt="OpenLock illustration" * size="md" * /> * ``` */ declare const OpenLock: OpenLockAsset; export default OpenLock;