@zohodesk/components
Version:
Dot UI is a customizable React component library built to deliver a clean, accessible, and developer-friendly UI experience. It offers a growing set of reusable components designed to align with modern design systems and streamline application development
25 lines (23 loc) • 634 B
JavaScript
import React from 'react';
import propTypes from "./props/propTypes";
import defaultProps from "./props/defaultProps";
import style from "./SuccessTick_v1.module.css";
const SuccessTick = props => {
const {
customClass
} = props;
const {
wrapper = ''
} = customClass;
return /*#__PURE__*/React.createElement("svg", {
className: `${style.tick} ${wrapper}`,
viewBox: "0 0 24 24",
role: "img",
"aria-hidden": "true"
}, /*#__PURE__*/React.createElement("path", {
d: "M4 12l5 5L20 6"
}));
};
SuccessTick.propTypes = propTypes;
SuccessTick.defaultProps = defaultProps;
export default SuccessTick;