-
-
Notifications
You must be signed in to change notification settings - Fork 144
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
8 changed files
with
170 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
examples/vite-vue3/@test-scope/test-color-icons/index.d.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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import type { | ||
IconifyJSON, | ||
IconifyInfo, | ||
IconifyMetaData, | ||
IconifyChars, | ||
} from '@iconify/types'; | ||
|
||
export { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars }; | ||
|
||
export declare const icons: IconifyJSON; | ||
export declare const info: IconifyInfo; | ||
export declare const metadata: IconifyMetaData; | ||
export declare const chars: IconifyChars; |
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,28 @@ | ||
/* eslint-disable style/comma-dangle */ | ||
exports.icons = { | ||
prefix: 'test-color-icons', | ||
icons: { | ||
about: { | ||
body: '<path fill="#2196F3" d="M37 40H11l-6 6V12c0-3.3 2.7-6 6-6h26c3.3 0 6 2.7 6 6v22c0 3.3-2.7 6-6 6z"/><g fill="#fff"><path d="M22 20h4v11h-4z"/><circle cx="24" cy="15" r="2"/></g>', | ||
} | ||
}, | ||
lastModified: 1672652184, | ||
width: 48, | ||
height: 48 | ||
} | ||
exports.info = { | ||
prefix: 'test-color-icons', | ||
name: 'Test Color Icons', | ||
total: 1, | ||
author: { | ||
name: 'test' | ||
}, | ||
license: { | ||
title: 'MIT' | ||
}, | ||
samples: ['about'], | ||
height: 32, | ||
displayHeight: 16 | ||
} | ||
exports.metadata = {} | ||
exports.chars = {} |
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,31 @@ | ||
/* eslint-disable style/comma-dangle */ | ||
const icons = { | ||
prefix: 'test-color-icons', | ||
icons: { | ||
about: { | ||
body: '<path fill="#2196F3" d="M37 40H11l-6 6V12c0-3.3 2.7-6 6-6h26c3.3 0 6 2.7 6 6v22c0 3.3-2.7 6-6 6z"/><g fill="#fff"><path d="M22 20h4v11h-4z"/><circle cx="24" cy="15" r="2"/></g>' | ||
} | ||
}, | ||
lastModified: 1672652184, | ||
width: 48, | ||
height: 48 | ||
} | ||
|
||
const info = { | ||
prefix: 'test-color-icons', | ||
name: 'Test Color Icons', | ||
total: 1, | ||
author: { | ||
name: 'test' | ||
}, | ||
license: { | ||
title: 'MIT' | ||
}, | ||
samples: ['about'], | ||
height: 32, | ||
displayHeight: 16 | ||
} | ||
|
||
const metadata = {} | ||
const chars = {} | ||
export { icons, info, metadata, chars } |
13 changes: 13 additions & 0 deletions
13
examples/vite-vue3/@test-scope/test-color-icons/package.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,13 @@ | ||
{ | ||
"name": "@test-scope/test-color-icons", | ||
"main": "index.js", | ||
"module": "index.mjs", | ||
"types": "index.d.ts", | ||
"exports": { | ||
"./*": "./*", | ||
".": { | ||
"require": "./index.js", | ||
"import": "./index.mjs" | ||
} | ||
} | ||
} |
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,13 @@ | ||
import type { | ||
IconifyJSON, | ||
IconifyInfo, | ||
IconifyMetaData, | ||
IconifyChars, | ||
} from '@iconify/types'; | ||
|
||
export { IconifyJSON, IconifyInfo, IconifyMetaData, IconifyChars }; | ||
|
||
export declare const icons: IconifyJSON; | ||
export declare const info: IconifyInfo; | ||
export declare const metadata: IconifyMetaData; | ||
export declare const chars: IconifyChars; |
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,28 @@ | ||
/* eslint-disable style/comma-dangle */ | ||
exports.icons = { | ||
prefix: 'plain-color-icons', | ||
icons: { | ||
about: { | ||
body: '<path fill="#2196F3" d="M37 40H11l-6 6V12c0-3.3 2.7-6 6-6h26c3.3 0 6 2.7 6 6v22c0 3.3-2.7 6-6 6z"/><g fill="#fff"><path d="M22 20h4v11h-4z"/><circle cx="24" cy="15" r="2"/></g>' | ||
} | ||
}, | ||
lastModified: 1672652184, | ||
width: 48, | ||
height: 48 | ||
} | ||
exports.info = { | ||
prefix: 'test-color-icons', | ||
name: 'Test Color Icons', | ||
total: 1, | ||
author: { | ||
name: 'test' | ||
}, | ||
license: { | ||
title: 'MIT' | ||
}, | ||
samples: ['about'], | ||
height: 32, | ||
displayHeight: 16 | ||
} | ||
exports.metadata = {} | ||
exports.chars = {} |
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,31 @@ | ||
// eslint-disable-next-line style/comma-dangle | ||
const icons = { | ||
prefix: 'plain-color-icons', | ||
icons: { | ||
about: { | ||
body: '<path fill="#2196F3" d="M37 40H11l-6 6V12c0-3.3 2.7-6 6-6h26c3.3 0 6 2.7 6 6v22c0 3.3-2.7 6-6 6z"/><g fill="#fff"><path d="M22 20h4v11h-4z"/><circle cx="24" cy="15" r="2"/></g>' | ||
} | ||
}, | ||
lastModified: 1672652184, | ||
width: 48, | ||
height: 48 | ||
} | ||
|
||
const info = { | ||
prefix: 'test-color-icons', | ||
name: 'Test Color Icons', | ||
total: 1, | ||
author: { | ||
name: 'test' | ||
}, | ||
license: { | ||
title: 'MIT' | ||
}, | ||
samples: ['about'], | ||
height: 32, | ||
displayHeight: 16 | ||
} | ||
|
||
const metadata = {} | ||
const chars = {} | ||
export { icons, info, metadata, chars } |
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,13 @@ | ||
{ | ||
"name": "plain-color-icons", | ||
"main": "index.js", | ||
"module": "index.mjs", | ||
"types": "index.d.ts", | ||
"exports": { | ||
"./*": "./*", | ||
".": { | ||
"require": "./index.js", | ||
"import": "./index.mjs" | ||
} | ||
} | ||
} |