import { Button, ColorSwatch, Flex, Heading, HoverCard, Section, Separator, Stack, Text, Tooltip, } from '@/components/atoms' type InteractiveElementsSectionContent = (typeof import('@/data/atomic-library-showcase.json'))['sections']['interactiveElements'] interface InteractiveElementsSectionProps { content: InteractiveElementsSectionContent } export function InteractiveElementsSection({ content }: InteractiveElementsSectionProps) { return (
{content.title}
{content.hoverCardLabel} {content.hoverCardTrigger}}> {content.hoverCardTitle} {content.hoverCardDescription}
{content.tooltipLabel}
{content.colorSwatchesLabel} {content.colorSwatches.map((swatch) => ( ))}
) }