import { SVGAttributes } from "react"; import { DefaultTheme } from "styled-components"; import { SpaceProps } from "styled-system"; import { Colors } from "../../theme"; export interface SvgProps extends SVGAttributes, SpaceProps { theme?: DefaultTheme; spin?: boolean; } export declare type IconComponentType = { iconName: string; isActive?: boolean; height?: string; width?: string; activeColor?: string; activeBackgroundColor?: keyof Colors; } & SvgProps;