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