import * as React from "react"; import { DefaultTheme } from "styled-components"; declare type Props = { /** * Icon to display for the `CrossFadeIcon`. */ icon: React.ReactElement; /** * Color of the icon. */ color: string; /** * Size of the icon. */ size: number; /** * @optional */ theme?: DefaultTheme; }; declare const CrossFadeIcon: ({ color, size, icon }: Props) => JSX.Element; export default CrossFadeIcon;