UNPKG

@airplane/views

Version:

A React library for building Airplane views. Views components are optimized in style and functionality to produce internal apps that are easy to build and maintain.

12 lines (11 loc) 715 B
import { Ref } from "react"; import { WrapperProps as Props } from "./Icon.types"; /** IconWithoutRef is exported for documentation purposes. */ export declare const IconWithoutRef: ({ innerRef, size, color, children, ...props }: import("./Icon.types").BaseProps & { children: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>; } & { innerRef: Ref<SVGSVGElement>; }) => import("react/jsx-runtime").JSX.Element; export declare const Icon: import("react").ForwardRefExoticComponent<import("./Icon.types").BaseProps & { children: import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>; } & import("react").RefAttributes<SVGSVGElement>>;