@intility/bifrost-react
Version:
React library for Intility's design system, Bifrost.
8 lines (7 loc) • 375 B
TypeScript
import Icon from "../Icon/Icon.js";
export type BoxArrowProps = Partial<React.ComponentProps<typeof Icon>> & {
/** External link styling (arrow pointing up and to the right) */
external?: boolean;
};
declare const BoxArrow: import("react").ForwardRefExoticComponent<Omit<BoxArrowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
export default BoxArrow;