lucide-astro 0.548.0 → 0.552.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/CalendarFold.astro +2 -2
- package/dist/ClockCheck.astro +10 -0
- package/dist/File.astro +2 -2
- package/dist/FileArchive.astro +6 -6
- package/dist/FileAudio.astro +4 -4
- package/dist/FileAudio2.astro +4 -6
- package/dist/FileAxis3D.astro +2 -2
- package/dist/FileAxis3d.astro +2 -2
- package/dist/FileBadge.astro +4 -4
- package/dist/FileBadge2.astro +5 -4
- package/dist/FileBarChart.astro +2 -2
- package/dist/FileBarChart2.astro +2 -2
- package/dist/FileBox.astro +4 -4
- package/dist/FileBraces.astro +11 -0
- package/dist/FileBracesCorner.astro +11 -0
- package/dist/FileChartColumn.astro +2 -2
- package/dist/FileChartColumnIncreasing.astro +2 -2
- package/dist/FileChartLine.astro +2 -2
- package/dist/FileChartPie.astro +2 -2
- package/dist/FileCheck.astro +2 -2
- package/dist/FileCheck2.astro +4 -4
- package/dist/FileCheckCorner.astro +10 -0
- package/dist/FileClock.astro +2 -2
- package/dist/FileCode.astro +2 -2
- package/dist/FileCode2.astro +5 -5
- package/dist/FileCodeCorner.astro +11 -0
- package/dist/FileCog.astro +11 -11
- package/dist/FileCog2.astro +11 -11
- package/dist/FileDiff.astro +1 -1
- package/dist/FileDigit.astro +5 -5
- package/dist/FileDown.astro +2 -2
- package/dist/FileEdit.astro +3 -3
- package/dist/FileExclamationPoint.astro +10 -0
- package/dist/FileHeadphone.astro +10 -0
- package/dist/FileHeart.astro +3 -3
- package/dist/FileImage.astro +2 -2
- package/dist/FileInput.astro +2 -2
- package/dist/FileJson.astro +3 -3
- package/dist/FileJson2.astro +5 -5
- package/dist/FileKey.astro +5 -4
- package/dist/FileKey2.astro +6 -6
- package/dist/FileLineChart.astro +2 -2
- package/dist/FileLock.astro +4 -3
- package/dist/FileLock2.astro +5 -5
- package/dist/FileMinus.astro +2 -2
- package/dist/FileMinus2.astro +4 -4
- package/dist/FileMinusCorner.astro +10 -0
- package/dist/FileMusic.astro +4 -4
- package/dist/FileOutput.astro +2 -3
- package/dist/FilePen.astro +3 -3
- package/dist/FilePenLine.astro +1 -1
- package/dist/FilePieChart.astro +2 -2
- package/dist/FilePlay.astro +2 -2
- package/dist/FilePlus.astro +2 -2
- package/dist/FilePlus2.astro +5 -5
- package/dist/FilePlusCorner.astro +11 -0
- package/dist/FileQuestion.astro +1 -1
- package/dist/FileQuestionMark.astro +1 -1
- package/dist/FileScan.astro +3 -3
- package/dist/FileSearch.astro +4 -4
- package/dist/FileSearch2.astro +5 -5
- package/dist/FileSearchCorner.astro +11 -0
- package/dist/FileSignal.astro +12 -0
- package/dist/FileSignature.astro +1 -1
- package/dist/FileSliders.astro +2 -2
- package/dist/FileSpreadsheet.astro +2 -2
- package/dist/FileSymlink.astro +2 -2
- package/dist/FileTerminal.astro +2 -2
- package/dist/FileText.astro +2 -2
- package/dist/FileType.astro +4 -4
- package/dist/FileType2.astro +6 -6
- package/dist/FileTypeCorner.astro +12 -0
- package/dist/FileUp.astro +2 -2
- package/dist/FileUser.astro +4 -4
- package/dist/FileVideo.astro +2 -2
- package/dist/FileVideo2.astro +4 -4
- package/dist/FileVideoCamera.astro +4 -4
- package/dist/FileVolume.astro +4 -4
- package/dist/FileVolume2.astro +3 -3
- package/dist/FileWarning.astro +2 -2
- package/dist/FileX.astro +2 -2
- package/dist/FileX2.astro +5 -5
- package/dist/FileXCorner.astro +11 -0
- package/dist/Files.astro +2 -2
- package/dist/GitBranchMinus.astro +11 -0
- package/dist/Helicopter.astro +15 -0
- package/dist/Shredder.astro +2 -2
- package/dist/SolarPanel.astro +14 -0
- package/dist/Sticker.astro +2 -2
- package/dist/StickyNote.astro +2 -2
- package/dist/index.d.ts +16 -0
- package/dist/index.js +16 -0
- package/package.json +2 -2
package/dist/FileLock.astro
CHANGED
|
@@ -4,7 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-lock" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<
|
|
9
|
-
<path d="
|
|
7
|
+
<path d="M4 9.8V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-3" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="M9 17v-2a2 2 0 0 0-4 0v2" />
|
|
10
|
+
<rect width="8" height="5" x="3" y="17" rx="1" />
|
|
10
11
|
</Layout>
|
package/dist/FileLock2.astro
CHANGED
|
@@ -3,9 +3,9 @@ import Layout from './.Layout.astro'
|
|
|
3
3
|
export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<Layout iconName="file-lock
|
|
7
|
-
<path d="M4
|
|
8
|
-
<path d="M14
|
|
9
|
-
<
|
|
10
|
-
<
|
|
6
|
+
<Layout iconName="file-lock" {...Astro.props}>
|
|
7
|
+
<path d="M4 9.8V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-3" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="M9 17v-2a2 2 0 0 0-4 0v2" />
|
|
10
|
+
<rect width="8" height="5" x="3" y="17" rx="1" />
|
|
11
11
|
</Layout>
|
package/dist/FileMinus.astro
CHANGED
|
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-minus" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="M14
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
9
|
<path d="M9 15h6" />
|
|
10
10
|
</Layout>
|
package/dist/FileMinus2.astro
CHANGED
|
@@ -3,8 +3,8 @@ import Layout from './.Layout.astro'
|
|
|
3
3
|
export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<Layout iconName="file-minus-
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="M14
|
|
9
|
-
<path d="
|
|
6
|
+
<Layout iconName="file-minus-corner" {...Astro.props}>
|
|
7
|
+
<path d="M20 14V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="M14 18h6" />
|
|
10
10
|
</Layout>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Layout from './.Layout.astro'
|
|
3
|
+
export type { Props } from './index.d.ts'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<Layout iconName="file-minus-corner" {...Astro.props}>
|
|
7
|
+
<path d="M20 14V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="M14 18h6" />
|
|
10
|
+
</Layout>
|
package/dist/FileMusic.astro
CHANGED
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-music" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="
|
|
9
|
-
<
|
|
10
|
-
<circle cx="6" cy="
|
|
7
|
+
<path d="M11.65 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v10.35" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="M8 20v-7l3 1.474" />
|
|
10
|
+
<circle cx="6" cy="20" r="2" />
|
|
11
11
|
</Layout>
|
package/dist/FileOutput.astro
CHANGED
|
@@ -4,9 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-output" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="
|
|
9
|
-
<path d="M4.063 20.999a2 2 0 0 0 2 1L18 22a2 2 0 0 0 2-2V7l-5-5H6" />
|
|
7
|
+
<path d="M4.226 20.925A2 2 0 0 0 6 22h12a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.127" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
10
9
|
<path d="m5 11-3 3" />
|
|
11
10
|
<path d="m5 17-3-3h10" />
|
|
12
11
|
</Layout>
|
package/dist/FilePen.astro
CHANGED
|
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-pen" {...Astro.props}>
|
|
7
|
-
<path d="M12.
|
|
8
|
-
<path d="M14
|
|
9
|
-
<path d="
|
|
7
|
+
<path d="M12.659 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v9.34" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="M10.378 12.622a1 1 0 0 1 3 3.003L8.36 20.637a2 2 0 0 1-.854.506l-2.867.837a.5.5 0 0 1-.62-.62l.836-2.869a2 2 0 0 1 .506-.853z" />
|
|
10
10
|
</Layout>
|
package/dist/FilePenLine.astro
CHANGED
|
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-pen-line" {...Astro.props}>
|
|
7
|
-
<path d="m18 5-2.
|
|
7
|
+
<path d="m18.226 5.226-2.52-2.52A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.351" />
|
|
8
8
|
<path d="M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z" />
|
|
9
9
|
<path d="M8 18h1" />
|
|
10
10
|
</Layout>
|
package/dist/FilePieChart.astro
CHANGED
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-chart-pie" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="
|
|
7
|
+
<path d="M15.941 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.704l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v3.512" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
9
|
<path d="M4.017 11.512a6 6 0 1 0 8.466 8.475" />
|
|
10
10
|
<path d="M9 16a1 1 0 0 1-1-1v-4c0-.552.45-1.008.995-.917a6 6 0 0 1 4.922 4.922c.091.544-.365.995-.917.995z" />
|
|
11
11
|
</Layout>
|
package/dist/FilePlay.astro
CHANGED
|
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-play" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
9
|
<path d="M15.033 13.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56v-4.704a.645.645 0 0 1 .967-.56z" />
|
|
10
10
|
</Layout>
|
package/dist/FilePlus.astro
CHANGED
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-plus" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="M14
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
9
|
<path d="M9 15h6" />
|
|
10
10
|
<path d="M12 18v-6" />
|
|
11
11
|
</Layout>
|
package/dist/FilePlus2.astro
CHANGED
|
@@ -3,9 +3,9 @@ import Layout from './.Layout.astro'
|
|
|
3
3
|
export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<Layout iconName="file-plus-
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="M14
|
|
9
|
-
<path d="
|
|
10
|
-
<path d="
|
|
6
|
+
<Layout iconName="file-plus-corner" {...Astro.props}>
|
|
7
|
+
<path d="M11.35 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5.35" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="M14 19h6" />
|
|
10
|
+
<path d="M17 16v6" />
|
|
11
11
|
</Layout>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Layout from './.Layout.astro'
|
|
3
|
+
export type { Props } from './index.d.ts'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<Layout iconName="file-plus-corner" {...Astro.props}>
|
|
7
|
+
<path d="M11.35 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5.35" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="M14 19h6" />
|
|
10
|
+
<path d="M17 16v6" />
|
|
11
|
+
</Layout>
|
package/dist/FileQuestion.astro
CHANGED
|
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-question-mark" {...Astro.props}>
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
7
8
|
<path d="M12 17h.01" />
|
|
8
|
-
<path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" />
|
|
9
9
|
<path d="M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3" />
|
|
10
10
|
</Layout>
|
|
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-question-mark" {...Astro.props}>
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
7
8
|
<path d="M12 17h.01" />
|
|
8
|
-
<path d="M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z" />
|
|
9
9
|
<path d="M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3" />
|
|
10
10
|
</Layout>
|
package/dist/FileScan.astro
CHANGED
|
@@ -4,10 +4,10 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-scan" {...Astro.props}>
|
|
7
|
-
<path d="M20
|
|
8
|
-
<path d="M14
|
|
7
|
+
<path d="M20 10V8a2.4 2.4 0 0 0-.706-1.704l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4.35" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
9
|
<path d="M16 14a2 2 0 0 0-2 2" />
|
|
10
|
+
<path d="M16 22a2 2 0 0 1-2-2" />
|
|
10
11
|
<path d="M20 14a2 2 0 0 1 2 2" />
|
|
11
12
|
<path d="M20 22a2 2 0 0 0 2-2" />
|
|
12
|
-
<path d="M16 22a2 2 0 0 1-2-2" />
|
|
13
13
|
</Layout>
|
package/dist/FileSearch.astro
CHANGED
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-search" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="
|
|
9
|
-
<
|
|
10
|
-
<
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<circle cx="11.5" cy="14.5" r="2.5" />
|
|
10
|
+
<path d="M13.3 16.3 15 18" />
|
|
11
11
|
</Layout>
|
package/dist/FileSearch2.astro
CHANGED
|
@@ -3,9 +3,9 @@ import Layout from './.Layout.astro'
|
|
|
3
3
|
export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<Layout iconName="file-search-
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="M14
|
|
9
|
-
<
|
|
10
|
-
<
|
|
6
|
+
<Layout iconName="file-search-corner" {...Astro.props}>
|
|
7
|
+
<path d="M11.1 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.589 3.588A2.4 2.4 0 0 1 20 8v3.25" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="m21 22-2.88-2.88" />
|
|
10
|
+
<circle cx="16" cy="17" r="3" />
|
|
11
11
|
</Layout>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Layout from './.Layout.astro'
|
|
3
|
+
export type { Props } from './index.d.ts'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<Layout iconName="file-search-corner" {...Astro.props}>
|
|
7
|
+
<path d="M11.1 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.589 3.588A2.4 2.4 0 0 1 20 8v3.25" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="m21 22-2.88-2.88" />
|
|
10
|
+
<circle cx="16" cy="17" r="3" />
|
|
11
|
+
</Layout>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Layout from './.Layout.astro'
|
|
3
|
+
export type { Props } from './index.d.ts'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<Layout iconName="file-signal" {...Astro.props}>
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="M8 15h.01" />
|
|
10
|
+
<path d="M11.5 13.5a2.5 2.5 0 0 1 0 3" />
|
|
11
|
+
<path d="M15 12a5 5 0 0 1 0 6" />
|
|
12
|
+
</Layout>
|
package/dist/FileSignature.astro
CHANGED
|
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-pen-line" {...Astro.props}>
|
|
7
|
-
<path d="m18 5-2.
|
|
7
|
+
<path d="m18.226 5.226-2.52-2.52A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.351" />
|
|
8
8
|
<path d="M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z" />
|
|
9
9
|
<path d="M8 18h1" />
|
|
10
10
|
</Layout>
|
package/dist/FileSliders.astro
CHANGED
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-sliders" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="M14
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
9
|
<path d="M8 12h8" />
|
|
10
10
|
<path d="M10 11v2" />
|
|
11
11
|
<path d="M8 17h8" />
|
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-spreadsheet" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="M14
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
9
|
<path d="M8 13h2" />
|
|
10
10
|
<path d="M14 13h2" />
|
|
11
11
|
<path d="M8 17h2" />
|
package/dist/FileSymlink.astro
CHANGED
|
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-symlink" {...Astro.props}>
|
|
7
|
+
<path d="M4 11V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
7
9
|
<path d="m10 18 3-3-3-3" />
|
|
8
|
-
<path d="M14 2v4a2 2 0 0 0 2 2h4" />
|
|
9
|
-
<path d="M4 11V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7" />
|
|
10
10
|
</Layout>
|
package/dist/FileTerminal.astro
CHANGED
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-terminal" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="M14
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
9
|
<path d="m8 16 2-2-2-2" />
|
|
10
10
|
<path d="M12 18h4" />
|
|
11
11
|
</Layout>
|
package/dist/FileText.astro
CHANGED
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-text" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="M14
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
9
|
<path d="M10 9H8" />
|
|
10
10
|
<path d="M16 13H8" />
|
|
11
11
|
<path d="M16 17H8" />
|
package/dist/FileType.astro
CHANGED
|
@@ -4,9 +4,9 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-type" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="M14
|
|
9
|
-
<path d="M9 13v-1h6v1" />
|
|
10
|
-
<path d="M12 12v6" />
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
11
9
|
<path d="M11 18h2" />
|
|
10
|
+
<path d="M12 12v6" />
|
|
11
|
+
<path d="M9 13v-.5a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 .5.5v.5" />
|
|
12
12
|
</Layout>
|
package/dist/FileType2.astro
CHANGED
|
@@ -3,10 +3,10 @@ import Layout from './.Layout.astro'
|
|
|
3
3
|
export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<Layout iconName="file-type-
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="M14
|
|
9
|
-
<path d="
|
|
10
|
-
<path d="
|
|
11
|
-
<path d="
|
|
6
|
+
<Layout iconName="file-type-corner" {...Astro.props}>
|
|
7
|
+
<path d="M12 22h6a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v6" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="M3 16v-1.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5V16" />
|
|
10
|
+
<path d="M6 22h2" />
|
|
11
|
+
<path d="M7 14v8" />
|
|
12
12
|
</Layout>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Layout from './.Layout.astro'
|
|
3
|
+
export type { Props } from './index.d.ts'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<Layout iconName="file-type-corner" {...Astro.props}>
|
|
7
|
+
<path d="M12 22h6a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v6" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="M3 16v-1.5a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 .5.5V16" />
|
|
10
|
+
<path d="M6 22h2" />
|
|
11
|
+
<path d="M7 14v8" />
|
|
12
|
+
</Layout>
|
package/dist/FileUp.astro
CHANGED
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-up" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="M14
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
9
|
<path d="M12 12v6" />
|
|
10
10
|
<path d="m15 15-3-3-3 3" />
|
|
11
11
|
</Layout>
|
package/dist/FileUser.astro
CHANGED
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-user" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="
|
|
9
|
-
<path d="
|
|
10
|
-
<circle cx="12" cy="
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="M16 22a4 4 0 0 0-8 0" />
|
|
10
|
+
<circle cx="12" cy="15" r="3" />
|
|
11
11
|
</Layout>
|
package/dist/FileVideo.astro
CHANGED
|
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-play" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
9
|
<path d="M15.033 13.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56v-4.704a.645.645 0 0 1 .967-.56z" />
|
|
10
10
|
</Layout>
|
package/dist/FileVideo2.astro
CHANGED
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-video-camera" {...Astro.props}>
|
|
7
|
-
<path d="M4
|
|
8
|
-
<path d="M14
|
|
9
|
-
<
|
|
10
|
-
<
|
|
7
|
+
<path d="M4 12V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="m10 17.843 3.033-1.755a.64.64 0 0 1 .967.56v4.704a.65.65 0 0 1-.967.56L10 20.157" />
|
|
10
|
+
<rect width="7" height="6" x="3" y="16" rx="1" />
|
|
11
11
|
</Layout>
|
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-video-camera" {...Astro.props}>
|
|
7
|
-
<path d="M4
|
|
8
|
-
<path d="M14
|
|
9
|
-
<
|
|
10
|
-
<
|
|
7
|
+
<path d="M4 12V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="m10 17.843 3.033-1.755a.64.64 0 0 1 .967.56v4.704a.65.65 0 0 1-.967.56L10 20.157" />
|
|
10
|
+
<rect width="7" height="6" x="3" y="16" rx="1" />
|
|
11
11
|
</Layout>
|
package/dist/FileVolume.astro
CHANGED
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-volume" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="M14
|
|
9
|
-
<path d="
|
|
10
|
-
<path d="
|
|
7
|
+
<path d="M4 11.55V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2h-1.95" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="M12 15a5 5 0 0 1 0 6" />
|
|
10
|
+
<path d="M8 14.502a.5.5 0 0 0-.826-.381l-1.893 1.631a1 1 0 0 1-.651.243H3.5a.5.5 0 0 0-.5.501v3.006a.5.5 0 0 0 .5.501h1.129a1 1 0 0 1 .652.243l1.893 1.633a.5.5 0 0 0 .826-.38z" />
|
|
11
11
|
</Layout>
|
package/dist/FileVolume2.astro
CHANGED
|
@@ -3,9 +3,9 @@ import Layout from './.Layout.astro'
|
|
|
3
3
|
export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<Layout iconName="file-
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="M14
|
|
6
|
+
<Layout iconName="file-signal" {...Astro.props}>
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
9
|
<path d="M8 15h.01" />
|
|
10
10
|
<path d="M11.5 13.5a2.5 2.5 0 0 1 0 3" />
|
|
11
11
|
<path d="M15 12a5 5 0 0 1 0 6" />
|
package/dist/FileWarning.astro
CHANGED
|
@@ -3,8 +3,8 @@ import Layout from './.Layout.astro'
|
|
|
3
3
|
export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<Layout iconName="file-
|
|
7
|
-
<path d="
|
|
6
|
+
<Layout iconName="file-exclamation-point" {...Astro.props}>
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
8
8
|
<path d="M12 9v4" />
|
|
9
9
|
<path d="M12 17h.01" />
|
|
10
10
|
</Layout>
|
package/dist/FileX.astro
CHANGED
|
@@ -4,8 +4,8 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="file-x" {...Astro.props}>
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="M14
|
|
7
|
+
<path d="M6 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.704.706l3.588 3.588A2.4 2.4 0 0 1 20 8v12a2 2 0 0 1-2 2z" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
9
|
<path d="m14.5 12.5-5 5" />
|
|
10
10
|
<path d="m9.5 12.5 5 5" />
|
|
11
11
|
</Layout>
|
package/dist/FileX2.astro
CHANGED
|
@@ -3,9 +3,9 @@ import Layout from './.Layout.astro'
|
|
|
3
3
|
export type { Props } from './index.d.ts'
|
|
4
4
|
---
|
|
5
5
|
|
|
6
|
-
<Layout iconName="file-x-
|
|
7
|
-
<path d="
|
|
8
|
-
<path d="M14
|
|
9
|
-
<path d="
|
|
10
|
-
<path d="
|
|
6
|
+
<Layout iconName="file-x-corner" {...Astro.props}>
|
|
7
|
+
<path d="M11 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="m15 17 5 5" />
|
|
10
|
+
<path d="m20 17-5 5" />
|
|
11
11
|
</Layout>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Layout from './.Layout.astro'
|
|
3
|
+
export type { Props } from './index.d.ts'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<Layout iconName="file-x-corner" {...Astro.props}>
|
|
7
|
+
<path d="M11 22H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
9
|
+
<path d="m15 17 5 5" />
|
|
10
|
+
<path d="m20 17-5 5" />
|
|
11
|
+
</Layout>
|
package/dist/Files.astro
CHANGED
|
@@ -4,7 +4,7 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="files" {...Astro.props}>
|
|
7
|
-
<path d="M15
|
|
8
|
-
<path d="
|
|
7
|
+
<path d="M15 2h-4a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8" />
|
|
8
|
+
<path d="M16.706 2.706A2.4 2.4 0 0 0 15 2v5a1 1 0 0 0 1 1h5a2.4 2.4 0 0 0-.706-1.706z" />
|
|
9
9
|
<path d="M5 7a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h8a2 2 0 0 0 1.732-1" />
|
|
10
10
|
</Layout>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Layout from './.Layout.astro'
|
|
3
|
+
export type { Props } from './index.d.ts'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<Layout iconName="git-branch-minus" {...Astro.props}>
|
|
7
|
+
<path d="M15 6a9 9 0 0 0-9 9V3" />
|
|
8
|
+
<path d="M21 18h-6" />
|
|
9
|
+
<circle cx="18" cy="6" r="3" />
|
|
10
|
+
<circle cx="6" cy="18" r="3" />
|
|
11
|
+
</Layout>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
import Layout from './.Layout.astro'
|
|
3
|
+
export type { Props } from './index.d.ts'
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
<Layout iconName="helicopter" {...Astro.props}>
|
|
7
|
+
<path d="M11 17v4" />
|
|
8
|
+
<path d="M14 3v8a2 2 0 0 0 2 2h5.865" />
|
|
9
|
+
<path d="M17 17v4" />
|
|
10
|
+
<path d="M18 17a4 4 0 0 0 4-4 8 6 0 0 0-8-6 6 5 0 0 0-6 5v3a2 2 0 0 0 2 2z" />
|
|
11
|
+
<path d="M2 10v5" />
|
|
12
|
+
<path d="M6 3h16" />
|
|
13
|
+
<path d="M7 21h14" />
|
|
14
|
+
<path d="M8 13H2" />
|
|
15
|
+
</Layout>
|
package/dist/Shredder.astro
CHANGED
|
@@ -4,11 +4,11 @@ export type { Props } from './index.d.ts'
|
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
<Layout iconName="shredder" {...Astro.props}>
|
|
7
|
+
<path d="M4 13V4a2 2 0 0 1 2-2h8a2.4 2.4 0 0 1 1.706.706l3.588 3.588A2.4 2.4 0 0 1 20 8v5" />
|
|
8
|
+
<path d="M14 2v5a1 1 0 0 0 1 1h5" />
|
|
7
9
|
<path d="M10 22v-5" />
|
|
8
10
|
<path d="M14 19v-2" />
|
|
9
|
-
<path d="M14 2v4a2 2 0 0 0 2 2h4" />
|
|
10
11
|
<path d="M18 20v-3" />
|
|
11
12
|
<path d="M2 13h20" />
|
|
12
|
-
<path d="M20 13V7l-5-5H6a2 2 0 0 0-2 2v9" />
|
|
13
13
|
<path d="M6 20v-3" />
|
|
14
14
|
</Layout>
|