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