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