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