@typlog/ui 0.0.2 → 0.2.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/components/IconCircle.d.ts +12 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.js +287 -262
- package/dist/style.css +1 -1
- package/package.json +3 -2
@@ -0,0 +1,12 @@
|
|
1
|
+
import { ColorType } from './types';
|
2
|
+
export interface IconCircleProps {
|
3
|
+
color?: ColorType;
|
4
|
+
size?: number | string;
|
5
|
+
variant?: 'solid' | 'soft' | 'outline' | 'glow';
|
6
|
+
icon: string;
|
7
|
+
}
|
8
|
+
declare const _default: import('vue').DefineComponent<IconCircleProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<IconCircleProps> & Readonly<{}>, {
|
9
|
+
variant: "solid" | "soft" | "outline" | "glow";
|
10
|
+
size: number | string;
|
11
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
12
|
+
export default _default;
|
@@ -48,4 +48,5 @@ export { RadioGroupItem as RadioTabsItem, type RadioGroupItemProps as RadioTabsI
|
|
48
48
|
export { default as Turnstile, type TurnstileProps, } from './Turnstile';
|
49
49
|
export { default as Quota, type QuotaProps, } from './Quota';
|
50
50
|
export { default as Spinner, } from './Spinner';
|
51
|
+
export { default as IconCircle, type IconCircleProps, } from './IconCircle';
|
51
52
|
export { Icon };
|