-
Notifications
You must be signed in to change notification settings - Fork 2
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
21 changed files
with
210 additions
and
52 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
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
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
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
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
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
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
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,10 @@ | ||
/// <reference types="astro/astro-jsx" /> | ||
|
||
declare module '~icons/*' { | ||
const component: (props: astroHTML.JSX.SVGAttributes) => astroHTML.JSX.Element | ||
export default component | ||
} | ||
declare module 'virtual:icons/*' { | ||
const component: (props: astroHTML.JSX.SVGAttributes) => astroHTML.JSX.Element | ||
export default component | ||
} |
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 @@ | ||
export { default } from '../dist/types' |
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,12 @@ | ||
declare module 'virtual:icons/*' { | ||
import type { JSX } from 'preact' | ||
|
||
const component: (props: JSX.SVGAttributes<SVGSVGElement>) => JSX.Element | ||
export default component | ||
} | ||
declare module '~icons/*' { | ||
import type { JSX } from 'preact' | ||
|
||
const component: (props: JSX.SVGAttributes<SVGSVGElement>) => JSX.Element | ||
export default component | ||
} |
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,12 @@ | ||
declare module 'virtual:icons/*' { | ||
import type { FunctionComponent, QwikIntrinsicElements } from '@builder.io/qwik' | ||
|
||
const Component: FunctionComponent<QwikIntrinsicElements['svg']> | ||
export default Component | ||
} | ||
declare module '~icons/*' { | ||
import type { FunctionComponent, QwikIntrinsicElements } from '@builder.io/qwik' | ||
|
||
const Component: FunctionComponent<QwikIntrinsicElements['svg']> | ||
export default Component | ||
} |
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,8 @@ | ||
declare module 'virtual:icons/*' { | ||
const component: string | ||
export default string | ||
} | ||
declare module '~icons/*' { | ||
const component: string | ||
export default component | ||
} |
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,14 @@ | ||
declare module 'virtual:icons/*' { | ||
import type { SVGProps } from 'react' | ||
import type React from 'react' | ||
|
||
const component: (props: SVGProps<SVGSVGElement>) => React.ReactElement | ||
export default component | ||
} | ||
declare module '~icons/*' { | ||
import type { SVGProps } from 'react' | ||
import type React from 'react' | ||
|
||
const component: (props: SVGProps<SVGSVGElement>) => React.ReactElement | ||
export default component | ||
} |
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,12 @@ | ||
declare module 'virtual:icons/*' { | ||
import type { ComponentProps, JSX } from 'solid-js' | ||
|
||
const component: (props: ComponentProps<'svg'>) => JSX.Element | ||
export default component | ||
} | ||
declare module '~icons/*' { | ||
import type { ComponentProps, JSX } from 'solid-js' | ||
|
||
const component: (props: ComponentProps<'svg'>) => JSX.Element | ||
export default component | ||
} |
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 @@ | ||
import './svelte4.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,9 @@ | ||
declare module 'virtual:icons/*' { | ||
export { SvelteComponentDev as default } from 'svelte/internal' | ||
} | ||
|
||
declare module '~icons/*' { | ||
import { SvelteComponentTyped } from 'svelte' | ||
|
||
export default class extends SvelteComponentTyped<svelte.JSX.IntrinsicElements['svg']> {} | ||
} |
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 @@ | ||
declare module 'virtual:icons/*' { | ||
import { SvelteComponent } from 'svelte' | ||
import type { SvelteHTMLElements } from 'svelte/elements' | ||
|
||
export default class extends SvelteComponent<SvelteHTMLElements['svg']> {} | ||
} | ||
|
||
declare module '~icons/*' { | ||
import { SvelteComponent } from 'svelte' | ||
import type { SvelteHTMLElements } from 'svelte/elements' | ||
|
||
export default class extends SvelteComponent<SvelteHTMLElements['svg']> {} | ||
} |
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 @@ | ||
import './vue3' |
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,12 @@ | ||
declare module 'virtual:icons/*' { | ||
import type { FunctionalComponent, SVGAttributes } from 'vue' | ||
|
||
const component: FunctionalComponent<SVGAttributes> | ||
export default component | ||
} | ||
declare module '~icons/*' { | ||
import type { FunctionalComponent, SVGAttributes } from 'vue' | ||
|
||
const component: FunctionalComponent<SVGAttributes> | ||
export default component | ||
} |
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,8 @@ | ||
declare module 'virtual:icons/*' { | ||
const component: HTMLElement | ||
export default component | ||
} | ||
declare module '~icons/*' { | ||
const component: HTMLElement | ||
export default component | ||
} |
Oops, something went wrong.