@nexara/nativeflow
Version:
Beautiful, responsive, and customizable UI components for React Native – built for performance and seamless experiences.
20 lines (19 loc) • 490 B
JavaScript
import { Path, Svg } from "react-native-svg";
import { jsx as _jsx } from "react/jsx-runtime";
const X = ({
size = 24,
color = '#000'
}) => {
return /*#__PURE__*/_jsx(Svg, {
height: size,
viewBox: "0 -960 960 960",
width: size,
fill: color,
children: /*#__PURE__*/_jsx(Path, {
d: "m256-200-56-56 224-224-224-224 56-56 224 224 224-224 56 56-224 224 224 224-56 56-224-224-224 224Z"
})
});
};
export default X;
//# sourceMappingURL=X.js.map
;