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