-
Notifications
You must be signed in to change notification settings - Fork 8.8k
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
5 changed files
with
90 additions
and
0 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
8 changes: 8 additions & 0 deletions
8
web/app/components/base/icons/assets/vender/solid/mapsAndTravel/globe-06.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
57 changes: 57 additions & 0 deletions
57
web/app/components/base/icons/src/vender/solid/mapsAndTravel/Globe06.json
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,57 @@ | ||
{ | ||
"icon": { | ||
"type": "element", | ||
"isRootNode": true, | ||
"name": "svg", | ||
"attributes": { | ||
"width": "16", | ||
"height": "17", | ||
"viewBox": "0 0 16 17", | ||
"fill": "none", | ||
"xmlns": "http://www.w3.org/2000/svg" | ||
}, | ||
"children": [ | ||
{ | ||
"type": "element", | ||
"name": "g", | ||
"attributes": { | ||
"id": "Icon" | ||
}, | ||
"children": [ | ||
{ | ||
"type": "element", | ||
"name": "g", | ||
"attributes": { | ||
"id": "Solid" | ||
}, | ||
"children": [ | ||
{ | ||
"type": "element", | ||
"name": "path", | ||
"attributes": { | ||
"fill-rule": "evenodd", | ||
"clip-rule": "evenodd", | ||
"d": "M6.39498 2.71706C6.90587 2.57557 7.44415 2.49996 8.00008 2.49996C9.30806 2.49996 10.5183 2.91849 11.5041 3.62893C10.9796 3.97562 10.5883 4.35208 10.3171 4.75458C9.90275 5.36959 9.79654 6.00558 9.88236 6.58587C9.96571 7.1494 10.2245 7.63066 10.4965 7.98669C10.7602 8.33189 11.0838 8.6206 11.3688 8.76305C12.0863 9.12177 12.9143 9.30141 13.5334 9.39399C14.0933 9.47774 15.2805 9.75802 15.3244 8.86608C15.3304 8.74474 15.3334 8.62267 15.3334 8.49996C15.3334 4.44987 12.0502 1.16663 8.00008 1.16663C3.94999 1.16663 0.666748 4.44987 0.666748 8.49996C0.666748 12.55 3.94999 15.8333 8.00008 15.8333C8.1228 15.8333 8.24486 15.8303 8.3662 15.8243C8.73395 15.8062 9.01738 15.4934 8.99927 15.1256C8.98117 14.7579 8.66837 14.4745 8.30063 14.4926C8.20111 14.4975 8.10091 14.5 8.00008 14.5C5.6605 14.5 3.63367 13.1609 2.6442 11.2074L3.28991 10.8346L5.67171 11.2804C6.28881 11.3959 6.85846 10.9208 6.85566 10.293L6.84632 8.19093L8.06357 6.10697C8.26079 5.76932 8.24312 5.3477 8.01833 5.02774L6.39498 2.71706Z", | ||
"fill": "currentColor" | ||
}, | ||
"children": [] | ||
}, | ||
{ | ||
"type": "element", | ||
"name": "path", | ||
"attributes": { | ||
"fill-rule": "evenodd", | ||
"clip-rule": "evenodd", | ||
"d": "M9.29718 8.93736C9.05189 8.84432 8.77484 8.90379 8.58934 9.08929C8.40383 9.27479 8.34437 9.55184 8.43741 9.79713L10.5486 15.363C10.6461 15.6199 10.8912 15.7908 11.166 15.7932C11.4408 15.7956 11.689 15.6292 11.791 15.374L12.6714 13.1714L14.874 12.2909C15.1292 12.1889 15.2957 11.9408 15.2932 11.666C15.2908 11.3912 15.12 11.146 14.863 11.0486L9.29718 8.93736Z", | ||
"fill": "currentColor" | ||
}, | ||
"children": [] | ||
} | ||
] | ||
} | ||
] | ||
} | ||
] | ||
}, | ||
"name": "Globe06" | ||
} |
16 changes: 16 additions & 0 deletions
16
web/app/components/base/icons/src/vender/solid/mapsAndTravel/Globe06.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,16 @@ | ||
// GENERATE BY script | ||
// DON NOT EDIT IT MANUALLY | ||
|
||
import * as React from 'react' | ||
import data from './Globe06.json' | ||
import IconBase from '@/app/components/base/icons/IconBase' | ||
import type { IconBaseProps, IconData } from '@/app/components/base/icons/IconBase' | ||
|
||
const Icon = React.forwardRef<React.MutableRefObject<SVGElement>, Omit<IconBaseProps, 'data'>>(( | ||
props, | ||
ref, | ||
) => <IconBase {...props} ref={ref} data={data as IconData} />) | ||
|
||
Icon.displayName = 'Globe06' | ||
|
||
export default Icon |
1 change: 1 addition & 0 deletions
1
web/app/components/base/icons/src/vender/solid/mapsAndTravel/index.ts
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
export { default as Globe06 } from './Globe06' | ||
export { default as Route } from './Route' |