@stratakit/bricks
Version:
Small, modular components for StrataKit
11 lines (10 loc) • 533 B
TypeScript
import * as React from "react";
import type { BaseProps } from "@stratakit/foundations/secret-internals";
import type Button from "./Button.js";
export declare const IconButtonContext: React.Context<{
iconSize: "regular" | "large";
}>;
interface IconButtonPresentationProps extends BaseProps<"span">, Pick<React.ComponentProps<typeof Button>, "variant"> {
}
export declare const IconButtonPresentation: React.ForwardRefExoticComponent<IconButtonPresentationProps & React.RefAttributes<HTMLElement | HTMLSpanElement>>;
export {};