@b8safe/react-native-safe
Version:
Package for native integration of B8Safe SDK
24 lines (23 loc) • 670 B
JavaScript
;
import React from 'react';
import { PixelRatio } from 'react-native';
import { Svg, Polyline } from 'react-native-svg';
import { jsx as _jsx } from "react/jsx-runtime";
const PopIcon = props => {
return /*#__PURE__*/_jsx(Svg, {
style: props.style,
width: 25,
height: 25,
viewBox: "120 0 512 512",
stroke: '#B2B2B2',
fill: "none",
strokeLinecap: "round",
...props,
strokeWidth: PixelRatio.getPixelSizeForLayoutSize(Number(props.strokeWidth ?? 22)),
children: /*#__PURE__*/_jsx(Polyline, {
points: "370.5,26.9 141.4,256 370.5,485.1 "
})
});
};
export default PopIcon;
//# sourceMappingURL=PopIcon.js.map