UNPKG

@cometchat/chat-uikit-react-native

Version:

Ready-to-use Chat UI Components for React Native

13 lines 1.29 kB
import Svg, { ClipPath, Defs, G, Path } from "react-native-svg"; const SvgComponent = ({ height, width, color }) => (<Svg width={width} height={height} fill='none' viewBox='0 0 18 19'> <G clipPath='url(#prefix__a)'> <Path fill={color ?? "#A1A1A1"} d='M9 18.034A8.533 8.533 0 1 1 17.534 9.5 8.543 8.543 0 0 1 9 18.034m.01-16A7.467 7.467 0 1 0 16.478 9.5a7.475 7.475 0 0 0-7.466-7.467m0 14a5.34 5.34 0 0 1-5.333-5.333c0-.134.096-.197.301-.197q.625.058 1.227.231h.01c1.238.335 2.513.52 3.796.552a16 16 0 0 0 3.795-.552h.01l.022-.005a6.5 6.5 0 0 1 1.204-.226c.205 0 .301.063.301.197a5.34 5.34 0 0 1-5.336 5.333zM4.909 11.61c-.12 0-.175.04-.175.125 0 1.763 2.32 2.133 4.267 2.133a9.4 9.4 0 0 0 2.623-.3c1.091-.335 1.644-.953 1.644-1.828q.002-.126-.175-.125a4 4 0 0 0-.788.165A12.5 12.5 0 0 1 9 12.274a12.5 12.5 0 0 1-3.307-.494 4 4 0 0 0-.785-.17m7.026-3.177c-.442 0-.8-.477-.8-1.066s.358-1.067.8-1.067c.441 0 .8.48.8 1.067 0 .588-.36 1.066-.8 1.066m-5.334 0c-.441 0-.8-.477-.8-1.066S6.16 6.3 6.598 6.3s.799.48.799 1.067c0 .588-.358 1.066-.799 1.066z'/> </G> <Defs> <ClipPath id='prefix__a'> <Path fill='color' d='M.467.967h17.067v17.067H.467z'/> </ClipPath> </Defs> </Svg>); export default SvgComponent; //# sourceMappingURL=smileys-&-people.js.map