lucide-astro 0.335.0 → 0.336.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -8,7 +8,7 @@ delete Astro.props.size
8
8
  // allow the user's props to redefine our defaults
9
9
  const props = Object.assign({
10
10
  'xmlns': 'http://www.w3.org/2000/svg',
11
- 'stroke-width': 2
11
+ 'stroke-width': 2,
12
12
  'width': size ?? 24,
13
13
  'height': size ?? 24,
14
14
  'stroke': 'currentColor',
@@ -0,0 +1,12 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M12 21v-6" />
8
+ <path d="M12 9V3" />
9
+ <path d="M3 15h18" />
10
+ <path d="M3 9h18" />
11
+ <rect width="18" height="18" x="3" y="3" rx="2" />
12
+ </Layout>
@@ -0,0 +1,11 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M12 15V9" />
8
+ <path d="M3 15h18" />
9
+ <path d="M3 9h18" />
10
+ <rect width="18" height="18" x="3" y="3" rx="2" />
11
+ </Layout>
@@ -0,0 +1,18 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M14 14v2" />
8
+ <path d="M14 20v2" />
9
+ <path d="M14 2v2" />
10
+ <path d="M14 8v2" />
11
+ <path d="M2 15h8" />
12
+ <path d="M2 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2" />
13
+ <path d="M2 9h8" />
14
+ <path d="M22 15h-4" />
15
+ <path d="M22 3h-2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2" />
16
+ <path d="M22 9h-4" />
17
+ <path d="M5 3v18" />
18
+ </Layout>
@@ -0,0 +1,18 @@
1
+ ---
2
+ import Layout from './.Layout.astro'
3
+ export type { Props } from './index.d.ts'
4
+ ---
5
+
6
+ <Layout {...Astro.props}>
7
+ <path d="M14 10h2" />
8
+ <path d="M15 22v-8" />
9
+ <path d="M15 2v4" />
10
+ <path d="M2 10h2" />
11
+ <path d="M20 10h2" />
12
+ <path d="M3 19h18" />
13
+ <path d="M3 22v-6a2 2 135 0 1 2-2h14a2 2 45 0 1 2 2v6" />
14
+ <path d="M3 2v2a2 2 45 0 0 2 2h14a2 2 135 0 0 2-2V2" />
15
+ <path d="M8 10h2" />
16
+ <path d="M9 22v-8" />
17
+ <path d="M9 2v4" />
18
+ </Layout>
package/dist/index.d.ts CHANGED
@@ -1330,7 +1330,11 @@ export { default as Swords } from './Swords.astro'
1330
1330
  export { default as Syringe } from './Syringe.astro'
1331
1331
  export { default as Table } from './Table.astro'
1332
1332
  export { default as Table2 } from './Table2.astro'
1333
+ export { default as TableCellsMerge } from './TableCellsMerge.astro'
1334
+ export { default as TableCellsSplit } from './TableCellsSplit.astro'
1335
+ export { default as TableColumnsSplit } from './TableColumnsSplit.astro'
1333
1336
  export { default as TableProperties } from './TableProperties.astro'
1337
+ export { default as TableRowsSplit } from './TableRowsSplit.astro'
1334
1338
  export { default as Tablet } from './Tablet.astro'
1335
1339
  export { default as TabletSmartphone } from './TabletSmartphone.astro'
1336
1340
  export { default as Tablets } from './Tablets.astro'
package/dist/index.js CHANGED
@@ -1325,7 +1325,11 @@ export { default as Swords } from './Swords.astro'
1325
1325
  export { default as Syringe } from './Syringe.astro'
1326
1326
  export { default as Table } from './Table.astro'
1327
1327
  export { default as Table2 } from './Table2.astro'
1328
+ export { default as TableCellsMerge } from './TableCellsMerge.astro'
1329
+ export { default as TableCellsSplit } from './TableCellsSplit.astro'
1330
+ export { default as TableColumnsSplit } from './TableColumnsSplit.astro'
1328
1331
  export { default as TableProperties } from './TableProperties.astro'
1332
+ export { default as TableRowsSplit } from './TableRowsSplit.astro'
1329
1333
  export { default as Tablet } from './Tablet.astro'
1330
1334
  export { default as TabletSmartphone } from './TabletSmartphone.astro'
1331
1335
  export { default as Tablets } from './Tablets.astro'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lucide-astro",
3
- "version": "0.335.0",
3
+ "version": "0.336.0",
4
4
  "description": "Get your Lucide icons right into your Astro project",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -26,7 +26,7 @@
26
26
  "author": "Aviortheking",
27
27
  "license": "MIT",
28
28
  "devDependencies": {
29
- "lucide-static": "0.335.0",
29
+ "lucide-static": "0.336.0",
30
30
  "semver": "^7.5.4"
31
31
  },
32
32
  "peerDependencies": {