diff --git a/src/components/Icon.js b/src/components/Icon.js index 3be91dee..b41d5721 100644 --- a/src/components/Icon.js +++ b/src/components/Icon.js @@ -50,6 +50,7 @@ const NAMES = [ "tick-small", "tick", "time", + "trash", "triangle-down", "triangle-up", "twitter", diff --git a/src/icons/trash.js b/src/icons/trash.js new file mode 100644 index 00000000..0182f6db --- /dev/null +++ b/src/icons/trash.js @@ -0,0 +1,33 @@ +import React from "react"; +import PropTypes from "prop-types"; + +function Trash({ size, primaryColor, testId }) { + return ( + + + + ); +} + +Trash.propTypes = { + size: PropTypes.string.isRequired, + primaryColor: PropTypes.string.isRequired, + testId: PropTypes.string, +}; + +export default Trash;