UNPKG

@payfit/unity-illustrations

Version:

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