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