import { Flex } from 'antd'; import type { SampleMeta } from '../../../widgets/core'; import { EmptyIllustrationCard } from '../EmptyIllustrationCard'; export const sampleMeta: SampleMeta = { id: 'empty-illustration-card-base', componentId: 'empty-illustration-card', title: 'Empty Illustration Card', description: '일러스트 영역과 제목, 설명, CTA를 함께 배치하는 empty 상태 카드입니다.', category: 'Common', kind: 'base', variantLabel: 'Base', order: 38, features: ['docs', 'component-sample'], }; export function Sample() { return ( ); }