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