@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
6 lines • 1.04 kB
JavaScript
import Svg, { Path } from "react-native-svg";
const SvgComponent = ({ height, width, color }) => (<Svg width={width} height={height} fill='none' viewBox='0 0 24 24'>
<Path fill={color} d='M11.25 12.75V16q0 .318.216.534a.73.73 0 0 0 .534.216q.32 0 .534-.216A.73.73 0 0 0 12.75 16v-3.25H16q.318 0 .534-.216A.73.73 0 0 0 16.75 12a.73.73 0 0 0-.216-.534.73.73 0 0 0-.534-.216h-3.25V8a.73.73 0 0 0-.216-.534A.73.73 0 0 0 12 7.25a.73.73 0 0 0-.534.216.73.73 0 0 0-.216.534v3.25H8a.73.73 0 0 0-.534.216.73.73 0 0 0-.216.534q0 .32.216.534A.73.73 0 0 0 8 12.75zm.752 8.75a9.3 9.3 0 0 1-3.706-.748 9.6 9.6 0 0 1-3.016-2.03 9.6 9.6 0 0 1-2.032-3.016 9.25 9.25 0 0 1-.748-3.704q0-1.972.748-3.706a9.6 9.6 0 0 1 2.03-3.016 9.6 9.6 0 0 1 3.016-2.032 9.25 9.25 0 0 1 3.704-.748q1.972 0 3.706.748a9.6 9.6 0 0 1 3.017 2.03 9.6 9.6 0 0 1 2.03 3.016 9.25 9.25 0 0 1 .749 3.704q0 1.972-.748 3.706a9.6 9.6 0 0 1-2.03 3.017 9.6 9.6 0 0 1-3.016 2.03 9.25 9.25 0 0 1-3.704.749'/>
</Svg>);
export default SvgComponent;
//# sourceMappingURL=add-circle-fill.js.map