import React from 'react' import { Props } from './props.type' export const FlagInCog: React.FC = (props) => { const { width, height, theme } = props const svgWidth = width || '152px' const svgHeight = height || '169px' return ( ) } export default FlagInCog