export interface SignalTraceProps { density?: "regular" | "tight"; orientation?: "horizontal" | "vertical"; tone?: "neutral" | "accent" | "warning"; } export function SignalTrace({ density = "regular", orientation = "horizontal", tone = "accent", }: SignalTraceProps) { return (
); }