Skip to content
Snippets Groups Projects
Commit 39a2f742 authored by Klaas Kliffen's avatar Klaas Kliffen :satellite:
Browse files

feat: add up icon

parent 6788eb99
Branches
Tags
1 merge request!28Add up icon
Pipeline #73691 passed
......@@ -16,6 +16,7 @@ import Minus from "./minus.svg";
import Next from "./next.svg";
import Plus from "./plus.svg";
import Previous from "./previous.svg";
import Up from "./up.svg";
export default {
AttentionCircle,
......@@ -36,4 +37,5 @@ export default {
Next,
Plus,
Previous,
Up,
};
<svg
width="14"
height="8"
viewBox="0 0 14 8"
fill="none"
xmlns="http://www.w3.org/2000/svg">
<path
d="M13 7L7 1L1 7"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round" />
</svg>
......@@ -23,6 +23,7 @@ export const iconNameOptions = [
"next",
"plus",
"previous",
"up",
] as const; // for storybook dropdown
export type IconName = (typeof iconNameOptions)[number]; // for storybook dropdown
......@@ -46,6 +47,7 @@ const iconMap = {
next: Icons.Next,
plus: Icons.Plus,
previous: Icons.Previous,
up: Icons.Up,
};
type IconProps = {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment