@amaui/icons-material-rounded-react
Version:
Icons material rounded for React
15 lines • 713 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import React from 'react';
import { Icon } from '@amaui/ui-react';
const IconMaterialCheckSmall = /*#__PURE__*/React.forwardRef((props, ref) => {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
name: "CheckSmall",
short_name: "CheckSmall",
viewBox: "0 0 24 24"
}, props), /*#__PURE__*/React.createElement("path", {
d: "m10 13.6 5.9-5.9q.275-.275.7-.275.425 0 .7.275.275.275.275.7 0 .425-.275.7l-6.6 6.6q-.3.3-.7.3-.4 0-.7-.3l-2.6-2.6q-.275-.275-.275-.7 0-.425.275-.7.275-.275.7-.275.425 0 .7.275Z"
}));
});
IconMaterialCheckSmall.displayName = 'AmauiIconMaterialCheckSmall';
export default IconMaterialCheckSmall;