UNPKG

@payfit/unity-illustrations

Version:

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