import React from 'react'; import { IconProps } from './types'; export const Download = React.memo(({ size = 16, className, ...props }) => { return ( ); }); Download.displayName = 'Download'; export default Download;