@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
7 lines • 1.1 kB
JavaScript
import Svg, { Circle, Path } from "react-native-svg";
const SvgComponent = ({ height, width, color }) => (<Svg width={width} height={height} fill='none' viewBox='0 0 24 24'>
<Circle cx={12} cy={12} r={11.25} fill={color} stroke='#A1A1A1' strokeWidth={1.5}/>
<Path fill='#fff' d='M17.25 21.093a.75.75 0 0 0 .75 1.3zm5.144-4.788.693.287zm.473-7.217-.725.194zm-4.018-6.013.456-.595zM18 22.392a12 12 0 0 0 5.087-5.8l-1.386-.574a10.5 10.5 0 0 1-4.451 5.075zm5.087-5.8a12 12 0 0 0 .504-7.698l-1.449.388a10.5 10.5 0 0 1-.441 6.736zm.504-7.698a12 12 0 0 0-4.286-6.414l-.913 1.19a10.5 10.5 0 0 1 3.75 5.612zM19.305 2.48A12 12 0 0 0 12 0v1.5a10.5 10.5 0 0 1 6.392 2.17zM12 12.698l-3.19 3.19a.477.477 0 0 1-.699-.003.479.479 0 0 1 .002-.687L11.302 12 8.114 8.802a.46.46 0 0 1-.143-.34.5.5 0 0 1 .143-.347q.143-.152.344-.153.2 0 .351.145L12 11.302l3.196-3.195a.487.487 0 0 1 .698.008q.143.15.139.347a.48.48 0 0 1-.147.34L12.697 12l3.188 3.198a.47.47 0 0 1 .143.34.5.5 0 0 1-.143.347.46.46 0 0 1-.344.153.46.46 0 0 1-.346-.15z'/>
</Svg>);
export default SvgComponent;
//# sourceMappingURL=loading-fill.js.map