import { Style } from '@boost/cli/react'; export interface SymbolProps { depth?: boolean[]; first: boolean; last: boolean; } export function Symbol({ depth = [], first, last }: SymbolProps) { return ( ); }