UNPKG

@stratakit/bricks

Version:

Small, modular components for StrataKit

11 lines (10 loc) 455 B
import type { BaseProps } from "@stratakit/foundations/secret-internals"; interface DisclosureArrowProps extends Omit<BaseProps<"svg">, "children"> { /** * Which direction should the arrow point towards? * @default "down" */ direction?: "down" | "right"; } export declare const DisclosureArrow: import("react").ForwardRefExoticComponent<DisclosureArrowProps & import("react").RefAttributes<HTMLElement | SVGSVGElement>>; export {};