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