@wistia/ui 0.20.0 → 0.20.1-beta.d92b0efb.fc08c14
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/index.d.ts +3 -2
- package/dist/index.js +623 -604
- package/dist/index.js.map +1 -1
- package/package.json +7 -6
package/dist/index.d.ts
CHANGED
|
@@ -596,7 +596,7 @@ type BadgeProps = ComponentPropsWithoutRef<'div'> & {
|
|
|
596
596
|
/**
|
|
597
597
|
* Optional `Icon` component to use. Must be an instance of [Icon](../?path=/docs/components-icon--docs)
|
|
598
598
|
*/
|
|
599
|
-
icon?: JSX.Element;
|
|
599
|
+
icon?: JSX.Element | undefined;
|
|
600
600
|
/**
|
|
601
601
|
* The text to display in the `Badge`
|
|
602
602
|
*/
|
|
@@ -617,7 +617,7 @@ declare const Badge: react.ForwardRefExoticComponent<Omit<react.DetailedHTMLProp
|
|
|
617
617
|
/**
|
|
618
618
|
* Optional `Icon` component to use. Must be an instance of [Icon](../?path=/docs/components-icon--docs)
|
|
619
619
|
*/
|
|
620
|
-
icon?: JSX.Element;
|
|
620
|
+
icon?: JSX.Element | undefined;
|
|
621
621
|
/**
|
|
622
622
|
* The text to display in the `Badge`
|
|
623
623
|
*/
|
|
@@ -1351,6 +1351,7 @@ declare const iconMap: {
|
|
|
1351
1351
|
'record-group': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1352
1352
|
redo: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1353
1353
|
refresh: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1354
|
+
remix: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1354
1355
|
replace: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1355
1356
|
reply: (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|
|
1356
1357
|
'request-video': (props: react.SVGProps<SVGSVGElement>) => react_jsx_runtime.JSX.Element;
|