stream-chat-react-native-core
Version:
The official React Native and Expo components for Stream Chat, a service for building chat applications
35 lines • 1.17 kB
JavaScript
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.CircleMinus = void 0;
var _react = _interopRequireDefault(require("react"));
var _reactNativeSvg = require("react-native-svg");
var _jsxRuntime = require("react/jsx-runtime");
var _jsxFileName = "/home/runner/work/stream-chat-react-native/stream-chat-react-native/package/src/icons/minus-circle.tsx";
var CircleMinus = ({
fill,
height,
pathFill,
size,
stroke,
width,
...rest
}) => {
var color = stroke ?? pathFill ?? fill ?? 'black';
return (0, _jsxRuntime.jsx)(_reactNativeSvg.Svg, {
fill: 'none',
height: height ?? size,
viewBox: '0 0 20 20',
width: width ?? size,
...rest,
children: (0, _jsxRuntime.jsx)(_reactNativeSvg.Path, {
d: "M6.875 10H13.125M17.5 10C17.5 14.1421 14.1421 17.5 10 17.5C5.85786 17.5 2.5 14.1421 2.5 10C2.5 5.85786 5.85786 2.5 10 2.5C14.1421 2.5 17.5 5.85786 17.5 10Z",
stroke: color,
strokeWidth: 1.5,
strokeLinecap: "round"
})
});
};
exports.CircleMinus = CircleMinus;
//# sourceMappingURL=minus-circle.js.map