stream-chat-react-native-core
Version:
The official React Native and Expo components for Stream Chat, a service for building chat applications
36 lines • 1.22 kB
JavaScript
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Bookmark = 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/save.tsx";
var Bookmark = ({
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: "M15 17.5L10 14.375L5 17.5V3.75C5 3.58424 5.06585 3.42527 5.18306 3.30806C5.30027 3.19085 5.45924 3.125 5.625 3.125H14.375C14.5408 3.125 14.6997 3.19085 14.8169 3.30806C14.9342 3.42527 15 3.58424 15 3.75V17.5Z",
stroke: color,
strokeLinecap: "round",
strokeLinejoin: "round",
strokeWidth: 1.5
})
});
};
exports.Bookmark = Bookmark;
//# sourceMappingURL=save.js.map