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