-
Notifications
You must be signed in to change notification settings - Fork 6
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
1 parent
f9c9ecc
commit f6dc404
Showing
7 changed files
with
56 additions
and
37 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
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
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,15 @@ | ||
interface FilledFavoriteProps { | ||
width?: number | ||
height?: number | ||
} | ||
|
||
function FilledFavorite({ width = 21, height = 19 }: FilledFavoriteProps) { | ||
return ( | ||
<svg width={width} height={height} viewBox="0 0 21 19" fill="none" xmlns="http://www.w3.org/2000/svg"> | ||
<path d="M10.6997 18.325C10.4664 18.325 10.2289 18.2834 9.98721 18.2C9.74554 18.1167 9.53304 17.9834 9.34971 17.8L7.62471 16.225C5.85804 14.6084 4.26221 13.0042 2.83721 11.4125C1.41221 9.82086 0.699707 8.06669 0.699707 6.15002C0.699707 4.58336 1.22471 3.27502 2.27471 2.22502C3.32471 1.17502 4.63304 0.650024 6.19971 0.650024C7.08304 0.650024 7.91637 0.837524 8.69971 1.21252C9.48304 1.58752 10.1497 2.10002 10.6997 2.75002C11.2497 2.10002 11.9164 1.58752 12.6997 1.21252C13.483 0.837524 14.3164 0.650024 15.1997 0.650024C16.7664 0.650024 18.0747 1.17502 19.1247 2.22502C20.1747 3.27502 20.6997 4.58336 20.6997 6.15002C20.6997 8.06669 19.9914 9.82502 18.5747 11.425C17.158 13.025 15.5497 14.6334 13.7497 16.25L12.0497 17.8C11.8664 17.9834 11.6539 18.1167 11.4122 18.2C11.1705 18.2834 10.933 18.325 10.6997 18.325Z" fill="#0075FF" /> | ||
</svg> | ||
|
||
); | ||
} | ||
|
||
export default FilledFavorite; |
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,15 @@ | ||
interface HomeProps { | ||
width?: number | ||
height?: number | ||
} | ||
|
||
function FilledHome({ width = 16, height = 20 }: HomeProps) { | ||
return ( | ||
<svg width={width} height={height} viewBox="0 0 17 18" fill="none" xmlns="http://www.w3.org/2000/svg"> | ||
<path d="M0.5 16V7C0.5 6.68333 0.570833 6.38333 0.7125 6.1C0.854167 5.81667 1.05 5.58333 1.3 5.4L7.3 0.9C7.65 0.633333 8.05 0.5 8.5 0.5C8.95 0.5 9.35 0.633333 9.7 0.9L15.7 5.4C15.95 5.58333 16.1458 5.81667 16.2875 6.1C16.4292 6.38333 16.5 6.68333 16.5 7V16C16.5 16.55 16.3042 17.0208 15.9125 17.4125C15.5208 17.8042 15.05 18 14.5 18H11.5C11.2167 18 10.9792 17.9042 10.7875 17.7125C10.5958 17.5208 10.5 17.2833 10.5 17V12C10.5 11.7167 10.4042 11.4792 10.2125 11.2875C10.0208 11.0958 9.78333 11 9.5 11H7.5C7.21667 11 6.97917 11.0958 6.7875 11.2875C6.59583 11.4792 6.5 11.7167 6.5 12V17C6.5 17.2833 6.40417 17.5208 6.2125 17.7125C6.02083 17.9042 5.78333 18 5.5 18H2.5C1.95 18 1.47917 17.8042 1.0875 17.4125C0.695833 17.0208 0.5 16.55 0.5 16Z" fill="#0075FF" /> | ||
</svg> | ||
|
||
); | ||
} | ||
|
||
export default FilledHome; |
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
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
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