diff --git a/src/DoNotContact.js b/src/DoNotContact.js index a053cfa..30da8a4 100644 --- a/src/DoNotContact.js +++ b/src/DoNotContact.js @@ -1,16 +1,26 @@ -import React from "react"; +import React from 'react' -const DoNotContact = ({ size, color, ...props }) => ( - - +const DoNotContactIcon = ({ + size, + color, + ...props +}) => ( + + -); +) -DoNotContact.displayName = "DoNotContact"; +DoNotContactIcon.displayName = 'DoNotContactIcon' -DoNotContact.defaultProps = { +DoNotContactIcon.defaultProps = { size: 24, - color: "currentcolor", -}; + color: 'currentcolor' +} -export default DoNotContact; \ No newline at end of file +export default DoNotContactIcon