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