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