Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds pinterest logo #234

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "knit-ui",
"version": "0.7.4",
"version": "0.7.5",
"description": "Component library for Clarisights",
"main": "lib/index.js",
"module": "es/index.js",
Expand Down
43 changes: 43 additions & 0 deletions src/components/Icon/Icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -537,6 +537,49 @@ export const customFillApple = ({
</svg>
)

export const customFillPinterest = ({
height = "24px",
width = "24px",
fill = "#000",
}: IconType) =>
(
<svg
version="1.0"
xmlns="http://www.w3.org/2000/svg"
width={width}
height={height}
fill={fill}
viewBox="0 0 600.000000 600.000000"
preserveAspectRatio="xMidYMid meet">

<g transform="translate(0.000000,600.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M2720 5629 c-604 -66 -1151 -321 -1577 -733 -670 -647 -946 -1553
-751 -2466 35 -168 123 -414 207 -585 406 -821 1183 -1364 2107 -1471 169 -20
523 -14 679 11 835 133 1516 596 1934 1315 174 300 298 690 332 1044 15 154 6
507 -16 646 -88 563 -345 1070 -745 1470 -408 407 -911 660 -1505 755 -119 20
-538 28 -665 14z m480 -380 c625 -57 1193 -362 1583 -849 591 -737 656 -1771
161 -2571 -359 -580 -937 -960 -1624 -1066 -158 -24 -490 -24 -650 1 -138 21
-343 73 -460 115 -121 45 -349 159 -460 231 -471 307 -823 792 -959 1323 -49
190 -63 290 -68 502 -11 396 56 703 227 1050 118 240 239 412 419 593 481 486
1157 734 1831 671z"/>
<path d="M2890 4583 c-163 -15 -310 -54 -448 -119 -333 -155 -570 -429 -659
-761 -24 -87 -27 -117 -27 -273 -1 -136 3 -192 17 -253 50 -210 179 -352 375
-411 l53 -15 27 57 c38 83 37 159 -4 237 -118 228 -107 195 -112 334 -5 148
10 232 60 349 47 109 100 185 193 278 318 321 810 388 1142 155 188 -132 275
-313 290 -596 12 -255 -60 -538 -185 -721 -59 -87 -151 -170 -229 -207 -63
-30 -75 -32 -173 -32 -88 0 -113 4 -155 23 -104 48 -144 113 -145 232 0 88 21
180 91 403 63 203 79 278 79 375 -1 129 -51 201 -167 237 -187 59 -361 -73
-429 -325 -12 -44 -18 -102 -18 -180 0 -101 3 -124 28 -190 15 -41 27 -89 27
-107 -1 -18 -21 -110 -46 -205 -161 -616 -185 -729 -206 -973 -15 -168 -1
-475 21 -475 15 0 112 94 154 149 134 175 223 406 301 779 16 72 32 132 36
132 5 0 46 -25 91 -57 170 -116 289 -152 460 -139 357 27 643 254 801 636 80
192 112 387 104 630 -5 183 -28 297 -85 421 -82 182 -239 346 -432 452 -225
124 -552 187 -830 160z"/>
</g>
</svg>
)

export const customFillBing = ({
height = "24px",
width = "24px",
Expand Down
Loading