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