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