UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

13 lines 1.01 kB
import Svg, { Mask, Path, G } from "react-native-svg"; const SvgComponent = ({ height, width, color }) => (<Svg width={width} height={height} fill='none' viewBox='0 0 24 24'> <Mask id='prefix__a' width={24} height={24} x={0} y={0} maskUnits='userSpaceOnUse' style={{ maskType: "alpha", }}> <Path fill='#D9D9D9' d='M0 0h24v24H0z'/> </Mask> <G mask='url(#prefix__a)'> <Path fill={color} d='M3.308 15.5q-.714 0-1.26-.547-.549-.547-.548-1.26v-1.616a1.9 1.9 0 0 1 .13-.673l2.866-6.762q.216-.48.721-.811.506-.33 1.052-.331h8.097q.747 0 1.277.53t.53 1.278v9.444q0 .362-.148.695-.148.334-.394.58l-5.29 5.256a1.3 1.3 0 0 1-.691.348 1.2 1.2 0 0 1-.752-.117q-.36-.183-.519-.537a1.13 1.13 0 0 1-.063-.752L9.392 15.5zm16.384-12q.749 0 1.278.53.53.53.53 1.278v8.384q0 .749-.53 1.278-.53.53-1.278.53h-.211q-.748 0-1.278-.53a1.74 1.74 0 0 1-.53-1.278V5.298q0-.748.53-1.273A1.75 1.75 0 0 1 19.48 3.5z'/> </G> </Svg>); export default SvgComponent; //# sourceMappingURL=thumb-down-fill.js.map