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