-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
58 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
packages/export-salt-theme/ui-src/components/icons/AvocadoIcon.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import React from "react"; | ||
import { Icon, IconProps } from "@salt-ds/icons"; | ||
|
||
export const AvocadoIcon = (props: IconProps) => { | ||
return ( | ||
<Icon | ||
aria-label="Avocado" | ||
data-testid="avocado-icon" | ||
viewBox="0 0 120 120" | ||
fill="none" | ||
{...props} | ||
> | ||
<path | ||
d="M44 18.5C44 18.5 47 8 61.5 8C76 8 79.5 16 85 34C90.5 52 93.5 52.5 96 65.5C98.5 78.5 97.5 85.5 94 92.5C90.5 99.5 84 110 68.5 112C53 114 41.5 110 34 102.5C26.5 95 21 85.5 22.5 71.5C24 57.5 31.5 53.5 36 43.5C40.5 33.5 44 18.5 44 18.5Z" | ||
stroke="#1E4624" | ||
stroke-width="4" | ||
/> | ||
<path | ||
d="M45.682 21.7453C45.682 21.7453 48.3971 12 61.5199 12C74.6427 12 77.8103 19.425 82.7879 36.1311C87.7655 52.8373 90.4806 53.3014 92.7432 65.367C95.0057 77.4325 94.1007 83.9294 90.9331 90.4262C87.7655 96.9231 81.8829 106.668 67.8551 108.525C53.8272 110.381 43.4195 106.668 36.6318 99.7074C29.8442 92.7465 24.8666 83.9294 26.2241 70.9357C27.5816 57.942 34.3693 54.2295 38.4419 44.9483C42.5145 35.6671 45.682 21.7453 45.682 21.7453Z" | ||
fill="#C9F263" | ||
stroke="#9DE14E" | ||
stroke-width="4" | ||
/> | ||
<circle | ||
cx="60.5" | ||
cy="77.5" | ||
r="17.5" | ||
fill="#C79A4E" | ||
stroke="#61481C" | ||
stroke-width="2" | ||
/> | ||
</Icon> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters