import React, { CSSProperties } from 'react'; import { IconDefinition } from '../Icon/Icon.generated'; export interface IconLinkProps { /** * Any additional CSS classes. */ className?: string; /** * Any additional CSS properties. */ style?: CSSProperties; /** * The icon to show. Must be a valid `IconDefinition`. */ icon?: IconDefinition; /** * @deprecated Use `icon` prop to use the new icons. */ iconName?: string; /** * The icon color. Also affects state colors (e.g. _hover_). */ iconColor?: 'black' | 'core-purple' | 'white'; href: string; } /** * Status: *finished*. * Category: Links */ declare const IconLink: React.FC; export default IconLink;