import Svg, { Path } from "react-native-svg";
import type { SvgProps } from "react-native-svg";
const SvgComponent = ({ height, width, color }: SvgProps) => (
  <Svg width={width} height={height} fill='none' viewBox='0 0 24 24'>
    <Path
      fill={color}
      d='M4.9 18.87a.76.76 0 0 1-.56-.227.77.77 0 0 1-.227-.563.77.77 0 0 1 .227-.563.76.76 0 0 1 .56-.23h1.13v-7.25q0-2.083 1.246-3.729A5.52 5.52 0 0 1 10.534 4.2v-.563q0-.612.427-1.039T12 2.171q.61 0 1.04.427.428.427.428 1.039V4.2a5.53 5.53 0 0 1 3.265 2.108 6 6 0 0 1 1.248 3.73v7.25h1.125q.325 0 .558.231a.77.77 0 0 1 .233.567.75.75 0 0 1-.23.56.78.78 0 0 1-.565.225zM12 21.8a1.9 1.9 0 0 1-1.389-.577 1.9 1.9 0 0 1-.577-1.39h3.933q0 .813-.577 1.39A1.9 1.9 0 0 1 12 21.8m-4.387-4.513h8.784v-7.25q0-1.822-1.289-3.105t-3.11-1.282q-1.823 0-3.103 1.282-1.282 1.283-1.282 3.105z'
    />
  </Svg>
);
export default SvgComponent;
