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