"use client" import { cn } from "../../utils/cn" import { Chevron02DownIcon } from "../icons-v2-generated" interface ExpandChevronProps { expanded: boolean className?: string } export function ExpandChevron({ expanded, className }: ExpandChevronProps) { return ( ) }