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