diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2021-04-01 22:25:58 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2021-04-01 22:25:58 +0200 |
| commit | 353334c69f52a49c92618bb673dd11c506c383cd (patch) | |
| tree | b6a3ae599668319d21b66c9a0213003dca3704ea /frontend/site/projects/museum/icons.js | |
| parent | 7524d3c92e8b525ec9084883eaec3b8caa043f54 (diff) | |
adding nav overlay
Diffstat (limited to 'frontend/site/projects/museum/icons.js')
| -rw-r--r-- | frontend/site/projects/museum/icons.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/frontend/site/projects/museum/icons.js b/frontend/site/projects/museum/icons.js new file mode 100644 index 0000000..c4bdd68 --- /dev/null +++ b/frontend/site/projects/museum/icons.js @@ -0,0 +1,13 @@ +import React from 'react' + +export const ArrowLeft = ( + <svg width="25" height="28" viewBox="0 0 25 28" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M19 6L7 13.9931L19 22" stroke="#0F0F0F" strokeWidth="2" strokeMiterlimit="10"/> + </svg> +) + +export const ArrowRight = ( + <svg width="25" height="28" viewBox="0 0 25 28" fill="none" xmlns="http://www.w3.org/2000/svg"> + <path d="M6 22L18 14.0069L6 6" stroke="#0F0F0F" strokeWidth="2" strokeMiterlimit="10"/> + </svg> +) |
