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