import { ArtifactCard } from '../../canvas/artifact-card.js' import { usePart } from '../context.js' import { ArtifactPartType } from '../types.js' /** * Display an artifact card in the chat message when artifact part is available * @param className - custom styles for the artifact */ export function ArtifactPartUI({ className }: { className?: string }) { const part = usePart(ArtifactPartType) if (!part) return null return }