diff --git a/packages/web/components/elements/icons/MoveToInboxIcon.tsx b/packages/web/components/elements/icons/MoveToInboxIcon.tsx new file mode 100644 index 000000000..d520dd84b --- /dev/null +++ b/packages/web/components/elements/icons/MoveToInboxIcon.tsx @@ -0,0 +1,38 @@ +/* eslint-disable functional/no-class */ +/* eslint-disable functional/no-this-expression */ +import { IconProps } from './IconProps' + +import React from 'react' + +export class MoveToInboxIcon extends React.Component { + render() { + const size = (this.props.size || 26).toString() + const color = (this.props.color || '#2A2A2A').toString() + return ( + + + + + + + ) + } +}