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