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