@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
13 lines • 1.68 kB
JavaScript
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='M16.458 19.123a10 10 0 0 1-.502.296q-.255.14-.527.256a.7.7 0 0 1-.58 0 .72.72 0 0 1-.412-.421.64.64 0 0 1 .032-.555.88.88 0 0 1 .423-.403 3 3 0 0 0 .722-.417l-3.825-3.425v2.496q0 .512-.469.707t-.828-.165L7.5 14.5H4.692a.88.88 0 0 1-.645-.259.88.88 0 0 1-.258-.645v-3.192q0-.387.258-.645a.88.88 0 0 1 .645-.259h2.143L2.523 5.188a.73.73 0 0 1-.212-.522.7.7 0 0 1 .212-.531.72.72 0 0 1 .527-.218q.31 0 .527.218L20 20.558q.209.207.213.522a.7.7 0 0 1-.213.532.72.72 0 0 1-.527.217.72.72 0 0 1-.527-.218zm2.523-7.148q0-2.055-1.105-3.764a6.8 6.8 0 0 0-2.964-2.548.88.88 0 0 1-.425-.407.66.66 0 0 1-.031-.55.72.72 0 0 1 .427-.421.79.79 0 0 1 .62.019 8.43 8.43 0 0 1 3.62 3.082q1.358 2.056 1.358 4.589a7.8 7.8 0 0 1-.864 3.594q-.17.405-.478.5a.87.87 0 0 1-.57-.002.77.77 0 0 1-.408-.344q-.146-.247.006-.558.41-.736.612-1.524.202-.787.202-1.666m-4.12-3.204q.7.535 1.064 1.45.363.915.364 1.779 0 .221-.024.438a2.4 2.4 0 0 1-.088.428.46.46 0 0 1-.345.362q-.276.075-.497-.145l-.89-.89a.9.9 0 0 1-.272-.649V9.13q0-.262.239-.38a.42.42 0 0 1 .45.022m-4.919-1.08a.43.43 0 0 1-.135-.322.46.46 0 0 1 .145-.32l.54-.541q.36-.36.828-.165.47.195.469.707v1.392q0 .312-.276.432t-.498-.11z'/>
</G>
</Svg>);
export default SvgComponent;
//# sourceMappingURL=volume-off-fill.js.map