Skip to content

Commit

Permalink
use pixo to generate icon
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve Pond authored and Steve Pond committed Jan 9, 2020
1 parent d36ae15 commit 1c5c92f
Showing 1 changed file with 20 additions and 10 deletions.
30 changes: 20 additions & 10 deletions src/DoNotContact.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
import React from "react";
import React from 'react'

const DoNotContact = ({ size, color, ...props }) => (
<svg {...props} viewBox="0 0 24 24" width={size} height={size} fill={color}>
<path d="M15.3,0 L1.7,0 C0.765,0 0.0085,0.751339286 0.0085,1.66964286 L0,11.6875 C0,12.6058036 0.765,13.3571429 1.7,13.3571429 L15.3,13.3571429 C16.235,13.3571429 17,12.6058036 17,11.6875 L17,1.66964286 C17,0.751339286 16.235,0 15.3,0 L15.3,0 Z M15.3,3.33928571 L8.5,7.51339286 L1.7,3.33928571 L1.7,1.66964286 L8.5,5.84375 L15.3,1.66964286 L15.3,3.33928571 L15.3,3.33928571 Z"></path>
const DoNotContactIcon = ({
size,
color,
...props
}) => (
<svg
{...props}
viewBox='0 0 24 24'
width={size}
height={size}
fill={color}
>
<path d='M15.3,0 L1.7,0 C0.765,0 0.0085,0.751339286 0.0085,1.66964286 L0,11.6875 C0,12.6058036 0.765,13.3571429 1.7,13.3571429 L15.3,13.3571429 C16.235,13.3571429 17,12.6058036 17,11.6875 L17,1.66964286 C17,0.751339286 16.235,0 15.3,0 L15.3,0 Z M15.3,3.33928571 L8.5,7.51339286 L1.7,3.33928571 L1.7,1.66964286 L8.5,5.84375 L15.3,1.66964286 L15.3,3.33928571 L15.3,3.33928571 Z M 4.5 0 A 4.5 4.5 0 0 1 4.5 9 A 4.5 4.5 0 0 1 4.5 0 M 15.5 6 A 5.5 5.5 0 0 1 15.5 17 A 5.5 5.5 0 0 1 15.5 6' />
</svg>
);
)

DoNotContact.displayName = "DoNotContact";
DoNotContactIcon.displayName = 'DoNotContactIcon'

DoNotContact.defaultProps = {
DoNotContactIcon.defaultProps = {
size: 24,
color: "currentcolor",
};
color: 'currentcolor'
}

export default DoNotContact;
export default DoNotContactIcon

0 comments on commit 1c5c92f

Please sign in to comment.