@stratakit/bricks
Version:
Small, modular components for StrataKit
12 lines (11 loc) • 630 B
TypeScript
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 declare const CaretsUpDown: import("react").ForwardRefExoticComponent<Omit<BaseProps<"svg">, "children"> & import("react").RefAttributes<HTMLElement | SVGSVGElement>>;
export {};