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