style: ajout d'une icône Carret Up

feat/1633-ajout-recherche-entreprise-simulateurs-ter
Alice Dahan 2024-11-05 11:16:18 +01:00
parent 4907585803
commit ae5e233f46
2 changed files with 17 additions and 0 deletions

View File

@ -12,6 +12,7 @@ export default meta
export {
ArrowRightIcon,
CarretDownIcon,
CarretUpIcon,
CheckmarkIcon,
ChevronIcon,
CircledArrowIcon,

View File

@ -92,6 +92,22 @@ export const CarretDownIcon = (props: HTMLAttributes<SVGElement>) => (
</SvgIcon>
)
export const CarretUpIcon = (props: HTMLAttributes<SVGElement>) => (
<SvgIcon
{...props}
width="14"
height="8"
viewBox="0 0 14 8"
xmlns="http://www.w3.org/2000/svg"
aria-hidden
>
<path
d="M7.70701 7.29289L13.2928 1.70711C13.9228 1.07714 13.4766 0 12.5857 0H1.41412C0.523211 0 0.0770421 1.07714 0.707007 1.70711L6.2928 7.29289C6.68332 7.68342 7.31648 7.68342 7.70701 7.29289Z"
transform="scale(1,-1) translate(0,-8)"
/>
</SvgIcon>
)
export function SearchIcon({ ...props }) {
return (
<SvgIcon