import React from "react"; export type IconBaseProps = { /** The viewbox of target icon * - e.g. "0 0 32 32" */ viewBox: string; /** TailwindCSS format - The width of icon. */ width?: string; /** TailwindCSS format - The height of icon. */ height?: string; /** TailwindCSS format - The color of icon. * - Please use fill color to modify icon's color * - e.g. fill-gray-300 */ color?: string; /** TailwindCSS format - The position of icon. * - Please use margin auto to control the position of icon */ position?: string; /** TailwindCSS format - The rotation of icon */ rotate?: string; /** Svg fill attribute * - If present, IconBase won't have fill-current class */ fill?: string; children?: React.ReactNode; style?: { width: string; height: string; }; }; declare const IconBase: ({ viewBox, children, width, height, color, position, rotate, fill, style, }: IconBaseProps) => import("react/jsx-runtime").JSX.Element; export default IconBase; //# sourceMappingURL=IconBase.d.ts.map