diff --git a/components/Button/index.scss b/components/Button/index.scss
index 9c60cd60..f9053487 100644
--- a/components/Button/index.scss
+++ b/components/Button/index.scss
@@ -82,6 +82,12 @@
width: 12px;
}
+ &.check svg {
+ margin-top: 1px;
+ height: 14px;
+ width: auto;
+ }
+
&.stroke svg {
fill: none;
stroke: $grey-50;
diff --git a/components/Button/index.tsx b/components/Button/index.tsx
index 3476e473..f83f5e76 100644
--- a/components/Button/index.tsx
+++ b/components/Button/index.tsx
@@ -4,6 +4,7 @@ import classNames from 'classnames'
import Link from 'next/link'
import AddIcon from '~public/icons/Add.svg'
+import CheckIcon from '~public/icons/LargeCheck.svg'
import CrossIcon from '~public/icons/Cross.svg'
import EditIcon from '~public/icons/Edit.svg'
import LinkIcon from '~public/icons/Link.svg'
@@ -65,6 +66,12 @@ const Button = (props: Props) => {
)
+ const checkIcon = (
+
+
+
+ )
+
const crossIcon = (
@@ -96,6 +103,7 @@ const Button = (props: Props) => {
case 'new': icon = addIcon; break
case 'menu': icon = menuIcon; break
case 'link': icon = linkIcon; break
+ case 'check': icon = checkIcon; break
case 'cross': icon = crossIcon; break
case 'edit': icon = editIcon; break
case 'save': icon = saveIcon; break