@stratakit/structures
Version:
Medium-sized component structures for the Strata design system
12 lines (11 loc) • 1.24 kB
TypeScript
import type { BaseProps } from "@stratakit/foundations/secret-internals";
export declare const Checkmark: import("react").ForwardRefExoticComponent<Omit<BaseProps<"svg">, "children"> & import("react").RefAttributes<HTMLElement | SVGSVGElement>>;
export declare const Dismiss: import("react").ForwardRefExoticComponent<Omit<BaseProps<"svg">, "children"> & import("react").RefAttributes<HTMLElement | SVGSVGElement>>;
interface StatusIconProps extends Omit<BaseProps<"svg">, "children"> {
tone: "positive" | "attention" | "critical" | "info";
}
export declare const StatusIcon: import("react").ForwardRefExoticComponent<StatusIconProps & import("react").RefAttributes<HTMLElement | SVGSVGElement>>;
export declare const MoreHorizontal: import("react").ForwardRefExoticComponent<Omit<BaseProps<"svg">, "children"> & import("react").RefAttributes<HTMLElement | SVGSVGElement>>;
export declare const ChevronDown: import("react").ForwardRefExoticComponent<Omit<BaseProps<"svg">, "children"> & import("react").RefAttributes<HTMLElement | SVGSVGElement>>;
export declare const ChevronRight: import("react").ForwardRefExoticComponent<Omit<BaseProps<"svg">, "children"> & import("react").RefAttributes<HTMLElement | SVGSVGElement>>;
export {};