Skip to content

Commit

Permalink
update checkmark and edit
Browse files Browse the repository at this point in the history
  • Loading branch information
ptrwllrt committed Nov 14, 2019
1 parent df56296 commit 35b95f5
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
8 changes: 7 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3962,7 +3962,12 @@ function CheckmarkIcon(props) {
height: props.size,
width: props.size,
viewBox: "0 0 24 24" },
React.createElement("path", { d: "M4 12l5 5L20 6", stroke: "#fff", strokeWidth: "1.5", fill: "none" })
React.createElement("path", {
fill: "none",
d: "M2.5 12l6.806 7L21.5 5",
stroke: "#fff",
strokeWidth: "2"
})
);
}
/* eslint-disable max-len */
Expand Down Expand Up @@ -4386,6 +4391,7 @@ function EditIcon(props) {
width: props.size,
viewBox: "0 0 24 24" },
React.createElement("path", {
fill: "none",
clipRule: "evenodd",
d: "M22 7.478L9.383 20.326 3 21l1.003-6.152L16.62 2 22 7.478z",
stroke: "#fff",
Expand Down
4 changes: 2 additions & 2 deletions src/components/button/__snapshots__/button.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -243,10 +243,10 @@ exports[`it accepts property icon=checkmark 1`] = `
width="16"
>
<path
d="M4 12l5 5L20 6"
d="M2.5 12l6.806 7L21.5 5"
fill="none"
stroke="#fff"
stroke-width="1.5"
stroke-width="2"
/>
</svg>
Icon Button
Expand Down
4 changes: 2 additions & 2 deletions src/components/buttonv2/__snapshots__/buttonv2.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,10 @@ exports[`it accepts property icon=checkmark 1`] = `
width="16"
>
<path
d="M4 12l5 5L20 6"
d="M2.5 12l6.806 7L21.5 5"
fill="none"
stroke="#fff"
stroke-width="1.5"
stroke-width="2"
/>
</svg>
Icon Button
Expand Down
7 changes: 6 additions & 1 deletion src/components/icon/icons/checkmark.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@ function CheckmarkIcon(props: {
height={props.size}
width={props.size}
viewBox="0 0 24 24">
<path d="M4 12l5 5L20 6" stroke="#fff" strokeWidth="1.5" fill="none" />
<path
fill="none"
d="M2.5 12l6.806 7L21.5 5"
stroke="#fff"
strokeWidth="2"
/>
</svg>
);
}
Expand Down
1 change: 1 addition & 0 deletions src/components/icon/icons/edit.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ function EditIcon(props: { size?: number, className: string, id: string }) {
width={props.size}
viewBox="0 0 24 24">
<path
fill="none"
clipRule="evenodd"
d="M22 7.478L9.383 20.326 3 21l1.003-6.152L16.62 2 22 7.478z"
stroke="#fff"
Expand Down

0 comments on commit 35b95f5

Please sign in to comment.