@nexara/nativeflow
Version:
Beautiful, responsive, and customizable UI components for React Native – built for performance and seamless experiences.
22 lines (21 loc) • 547 B
JavaScript
import { Path, Svg } from "react-native-svg";
import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
const Check = ({
size = 24,
color = '#000'
}) => {
return /*#__PURE__*/_jsx(_Fragment, {
children: /*#__PURE__*/_jsx(Svg, {
height: size,
viewBox: "0 -960 960 960",
width: size,
fill: color,
children: /*#__PURE__*/_jsx(Path, {
d: "M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z"
})
})
});
};
export default Check;
//# sourceMappingURL=Check.js.map
;