UNPKG

@stratakit/bricks

Version:

Small, modular components for StrataKit

12 lines (11 loc) 446 B
import type { BaseProps } from "@stratakit/foundations/secret-internals"; interface DotProps extends BaseProps<"span"> { /** * Children will be visually and semantically hidden, to be used * in conjunction with `aria-describedby`. */ children: string; } /** @private */ export declare const Dot: import("react").ForwardRefExoticComponent<DotProps & import("react").RefAttributes<HTMLElement | HTMLSpanElement>>; export {};