From e145ef983e64ba1ab0ffacf0e3e9eae94db1d8e4 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 4 Jan 2022 12:13:24 +0100 Subject: chore(icons): add direction to arrow icon and split path I can now animate separatly the arrow head and the arrow body. --- src/assets/images/icon-arrow-right.svg | 19 ++++++---- src/components/Icons/Arrow/Arrow.tsx | 69 ++++++++++++++++++++++++++++++++-- 2 files changed, 78 insertions(+), 10 deletions(-) (limited to 'src') diff --git a/src/assets/images/icon-arrow-right.svg b/src/assets/images/icon-arrow-right.svg index 9faf9d8..5ddb0b4 100644 --- a/src/assets/images/icon-arrow-right.svg +++ b/src/assets/images/icon-arrow-right.svg @@ -5,8 +5,8 @@ viewBox="0 0 64.644997 23.476001" version="1.1" id="svg4" - sodipodi:docname="icon-arrow-top (copie 1).svg" - inkscape:version="1.1 (c4e8f9ed74, 2021-05-24)" + sodipodi:docname="icon-arrow-right.svg" + inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns="http://www.w3.org/2000/svg" @@ -22,9 +22,9 @@ inkscape:pageopacity="0.0" inkscape:pagecheckerboard="0" showgrid="false" - inkscape:zoom="1.6088114" - inkscape:cx="-127.42326" - inkscape:cy="71.481343" + inkscape:zoom="7.3600763" + inkscape:cx="11.141189" + inkscape:cy="23.912796" inkscape:window-width="1920" inkscape:window-height="1019" inkscape:window-x="0" @@ -36,6 +36,11 @@ fit-margin-right="0" fit-margin-bottom="0" /> + d="M -1.6784668e-6,15.441 40.007998,15.423 V 8.0349999 l -40.0079996784668,0.142 z" + id="path2-6" + sodipodi:nodetypes="ccccc" /> + diff --git a/src/components/Icons/Arrow/Arrow.tsx b/src/components/Icons/Arrow/Arrow.tsx index 61edfca..e9131d1 100644 --- a/src/components/Icons/Arrow/Arrow.tsx +++ b/src/components/Icons/Arrow/Arrow.tsx @@ -1,6 +1,65 @@ import styles from './Arrow.module.scss'; -const ArrowIcon = () => { +type ArrowDirection = 'top' | 'right' | 'bottom' | 'left'; + +const ArrowIcon = ({ direction = 'right' }: { direction?: ArrowDirection }) => { + if (direction === 'top') { + return ( + + + + + ); + } + + if (direction === 'bottom') { + return ( + + + + + ); + } + + if (direction === 'left') { + return ( + + + + + ); + } + return ( { xmlns="http://www.w3.org/2000/svg" > + ); -- cgit v1.2.3