Skip to content

Commit

Permalink
Merge branch 'shared-package' of https://github.com/lucide-icons/lucide
Browse files Browse the repository at this point in the history
… into shared-package
  • Loading branch information
ericfennis committed Mar 6, 2024
2 parents 106478e + 09afffd commit d81bae2
Show file tree
Hide file tree
Showing 21 changed files with 280 additions and 29 deletions.
20 changes: 19 additions & 1 deletion docs/.vitepress/lib/SvgPreview/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,29 @@ const Grid = ({
fill={fill}
/>
<path
strokeDasharray={'0 0.1 ' + '0.1 0.15 '.repeat(11) + '0 0.15'}
strokeWidth={0.1}
d={
props.d ||
new Array(Math.floor(24 - 1))
.fill(null)
.flatMap((_, i) => [
.map((_, i) => i)
.filter((i) => i % 3 !== 2)
.flatMap((i) => [
`M${props.strokeWidth} ${i + 1}h${24 - props.strokeWidth * 2}`,
`M${i + 1} ${props.strokeWidth}v${24 - props.strokeWidth * 2}`,
])
.join('')
}
/>
<path
d={
props.d ||
new Array(Math.floor(24 - 1))
.fill(null)
.map((_, i) => i)
.filter((i) => i % 3 === 2)
.flatMap((i) => [
`M${props.strokeWidth} ${i + 1}h${24 - props.strokeWidth * 2}`,
`M${i + 1} ${props.strokeWidth}v${24 - props.strokeWidth * 2}`,
])
Expand Down
4 changes: 3 additions & 1 deletion icons/airplay.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
"cast",
"mirroring",
"screen",
"monitor"
"monitor",
"macos",
"osx"
],
"categories": [
"multimedia",
Expand Down
2 changes: 1 addition & 1 deletion icons/airplay.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions icons/app-window-mac.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "../icon.schema.json",
"contributors": [
"danielbayley"
],
"tags": [
"application",
"menu bar",
"pane",
"preferences",
"macos",
"osx",
"executable"
],
"categories": [
"layout",
"design",
"development",
"files"
]
}
16 changes: 16 additions & 0 deletions icons/app-window-mac.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 5 additions & 2 deletions icons/app-window.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,14 @@
],
"tags": [
"application",
"menu bar",
"pane",
"executable"
],
"categories": [
"layout",
"design",
"files",
"layout"
"development",
"files"
]
}
16 changes: 10 additions & 6 deletions icons/brain-circuit.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 7 additions & 1 deletion icons/brain-cog.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 9 additions & 2 deletions icons/brain.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions icons/dock.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"$schema": "../icon.schema.json",
"contributors": [
"danielbayley"
],
"tags": [
"desktop",
"applications",
"launch",
"home",
"menu bar",
"bottom",
"line",
"macos",
"osx"
],
"categories": [
"layout",
"design",
"development",
"files"
]
}
15 changes: 15 additions & 0 deletions icons/dock.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 8 additions & 8 deletions icons/keyboard.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 7 additions & 1 deletion icons/podcast.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,14 @@
"karsa-mistmere"
],
"tags": [
"audio",
"music",
"mic",
"music"
"talk",
"voice",
"subscribe",
"subscription",
"stream"
],
"categories": [
"multimedia",
Expand Down
6 changes: 3 additions & 3 deletions icons/podcast.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions icons/proportions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"$schema": "../icon.schema.json",
"contributors": [
"danielbayley"
],
"tags": [
"screens",
"sizes",
"rotate",
"rotation",
"adjust",
"aspect ratio",
"16:9",
"widescreen",
"4:3",
"resolution",
"responsive",
"mobile",
"desktop",
"dimensions",
"monitor",
"orientation",
"portrait",
"landscape"
],
"categories": [
"layout",
"design",
"photography",
"devices"
]
}
15 changes: 15 additions & 0 deletions icons/proportions.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 8 additions & 3 deletions icons/ratio.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,30 @@
],
"tags": [
"screens",
"sizes",
"rotate",
"rotation",
"adjust",
"aspect ratio",
"proportions",
"16:9",
"widescreen",
"4:3",
"resolution",
"responsive",
"mobile",
"desktop",
"dimensions",
"monitor",
"orientation",
"portrait",
"landscape"
],
"categories": [
"connectivity",
"devices",
"layout",
"design",
"photography"
"photography",
"devices",
"connectivity"
]
}
24 changes: 24 additions & 0 deletions icons/rotate-ccw-square.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"$schema": "../icon.schema.json",
"contributors": [
"danielbayley"
],
"tags": [
"left",
"counter-clockwise",
"rotate",
"image",
"90",
"45",
"degrees",
"°"
],
"categories": [
"layout",
"design",
"photography",
"tools",
"shapes",
"arrows"
]
}
15 changes: 15 additions & 0 deletions icons/rotate-ccw-square.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit d81bae2

Please sign in to comment.