@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
9 lines (8 loc) • 429 B
TypeScript
import type { PropsFor } from "../../types.js";
import ExpandIcon from "../internal/ExpandIcon/ExpandIcon.internal.js";
export type ButtonExpandProps = PropsFor<"button", React.ComponentProps<typeof ExpandIcon>>;
/**
* Button with a rotatable angle icon
*/
declare const ButtonExpand: import("react").ForwardRefExoticComponent<ButtonExpandProps & import("react").RefAttributes<HTMLButtonElement>>;
export default ButtonExpand;