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