monday-ui-react-core
Version:
Official monday.com UI resources for application development in React.js
18 lines (17 loc) • 794 B
JavaScript
/* eslint-disable */
/* tslint:disable */
import PropTypes from 'prop-types';
import React from 'react';
const Add = ({size, ...props}) => (
<svg viewBox="0 0 20 20" fill="currentColor" width={ size || "20" } height={ size || "20" } {...props}>
<path d="M10.75 3C10.75 2.58579 10.4142 2.25 10 2.25C9.58579 2.25 9.25 2.58579 9.25 3V9.25H3C2.58579 9.25 2.25 9.58579 2.25 10C2.25 10.4142 2.58579 10.75 3 10.75H9.25V17C9.25 17.4142 9.58579 17.75 10 17.75C10.4142 17.75 10.75 17.4142 10.75 17V10.75H17C17.4142 10.75 17.75 10.4142 17.75 10C17.75 9.58579 17.4142 9.25 17 9.25H10.75V3Z"
fill="currentColor" fillRule="evenodd" clipRule="evenodd" />
</svg>
);
Add.displayName = 'Add';
Add.propTypes = {
size: PropTypes.string
}
export default Add;
/* tslint:enable */
/* eslint-enable */