import React from 'react'; import SvgIcon from './svgIcon'; type Props = React.ComponentProps; const IconClubhouse = React.forwardRef(function IconClubhouse( props: Props, ref: React.Ref ) { return ( ); }); IconClubhouse.displayName = 'IconClubhouse'; export {IconClubhouse};