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