diff --git a/src/icons/Download/Download.tsx b/src/icons/Download/Download.tsx index b4a7715ad..240473d61 100644 --- a/src/icons/Download/Download.tsx +++ b/src/icons/Download/Download.tsx @@ -1,21 +1,24 @@ import { FC } from 'react'; -import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants'; +import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants'; import { IconProps } from '../types'; + export const DownloadIcon: FC = ({ width = DEFAULT_WIDTH, height = DEFAULT_HEIGHT, - fill = '#455a64', - style = {} + fill = DEFAULT_FILL_NONE, + ...props }) => ( - + ); diff --git a/src/icons/ExternalLink/Externallink.tsx b/src/icons/ExternalLink/Externallink.tsx index b4aebf133..c9c58d225 100644 --- a/src/icons/ExternalLink/Externallink.tsx +++ b/src/icons/ExternalLink/Externallink.tsx @@ -1,10 +1,11 @@ import { FC } from 'react'; -import { DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants'; +import { DEFAULT_FILL_NONE, DEFAULT_HEIGHT, DEFAULT_WIDTH } from '../../constants/constants'; import { IconProps } from '../types'; export const ExternalLinkIcon: FC = ({ width = DEFAULT_WIDTH, height = DEFAULT_HEIGHT, + fill = DEFAULT_FILL_NONE, ...props }) => { return ( @@ -15,7 +16,10 @@ export const ExternalLinkIcon: FC = ({ viewBox="0 -960 960 960" {...props} > - + ); };