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