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