/** biome-ignore-all lint/a11y/noLabelWithoutControl: need it */ import type { ReactElement, ReactNode } from 'react'; type AreaIndicatorProps = { children?: ReactNode | Array; depth?: number; height?: number | string; name: string; width?: number | string; }; const AreaIndicator = ({ children, name = 'area', width = '100%', height = '100%', depth = 0 }: AreaIndicatorProps): ReactElement => { return (
{children}
); }; export { AreaIndicator };