import type { SVGProps } from 'react' import { Ref, forwardRef, memo } from 'react' const SvgSettingsOutline = (props: SVGProps, ref: Ref) => ( ) const ForwardRef = forwardRef(SvgSettingsOutline) const Memo = memo(ForwardRef) export default Memo