kewti_components 0.0.6 → 0.0.7

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.
@@ -0,0 +1,13 @@
1
+ Font: Benaiah
2
+ Designer: Unknown Designer
3
+ Source: Font.et
4
+ ----------------------------------------
5
+ License Information:
6
+ Unknown License
7
+
8
+
9
+
10
+ No specific license information provided. Please check with the designer.
11
+
12
+ ----------------------------------------
13
+ Downloaded from Font.et
@@ -0,0 +1,13 @@
1
+ Font: Menbere
2
+ Designer: Aleme Tadesse
3
+ Source: Font.et
4
+ ----------------------------------------
5
+ License Information:
6
+ Unknown License
7
+
8
+
9
+
10
+ No specific license information provided. Please check with the designer.
11
+
12
+ ----------------------------------------
13
+ Downloaded from Font.et
@@ -0,0 +1,13 @@
1
+ Font: Mesob
2
+ Designer: ADIL CREATIVE
3
+ Source: Font.et
4
+ ----------------------------------------
5
+ License Information:
6
+ Unknown License
7
+
8
+
9
+
10
+ No specific license information provided. Please check with the designer.
11
+
12
+ ----------------------------------------
13
+ Downloaded from Font.et
@@ -0,0 +1,13 @@
1
+ Font: Zemach
2
+ Designer: ADIL CREATIVE
3
+ Source: Font.et
4
+ ----------------------------------------
5
+ License Information:
6
+ Unknown License
7
+
8
+
9
+
10
+ No specific license information provided. Please check with the designer.
11
+
12
+ ----------------------------------------
13
+ Downloaded from Font.et
package/dist/index.d.ts CHANGED
@@ -5,3 +5,4 @@ export { KewtiLocationSelector } from './kewti-regions/component';
5
5
  export { KewtiMap } from './kewti-maps/component';
6
6
  export { default as TransactionValidator } from './kewti-banks/component';
7
7
  export { KewtiPassword } from './kewti-passwords/component';
8
+ export { KewtiFonts, KewtiPronounce } from './kewti-fonts/component';
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- type FontName = "geez_digital" | "bela_hidase";
2
+ type FontName = "geez_digital" | "bela_hidase" | "menbere" | "abinet";
3
3
  interface KewtiFontsProps {
4
4
  font: FontName;
5
5
  className?: string;
@@ -7,4 +7,12 @@ interface KewtiFontsProps {
7
7
  children: React.ReactNode;
8
8
  }
9
9
  export declare function KewtiFonts({ font, className, style, children, }: KewtiFontsProps): import("react/jsx-runtime").JSX.Element;
10
+ interface KewtiPronounceProps {
11
+ text: string;
12
+ lang?: string;
13
+ className?: string;
14
+ iconClassName?: string;
15
+ children?: React.ReactNode;
16
+ }
17
+ export declare function KewtiPronounce({ text, lang, className, iconClassName, children, }: KewtiPronounceProps): import("react/jsx-runtime").JSX.Element;
10
18
  export {};