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