@televet/kibble-ui 1.0.17-beta.5 → 1.0.17-beta.6
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CSSProperties } from 'react';
|
|
1
|
+
import React, { CSSProperties } from 'react';
|
|
2
2
|
import { LogoHoliday, LogoType, LogoColor } from './logo.types';
|
|
3
3
|
export interface ILogoProps {
|
|
4
4
|
type?: LogoType;
|
|
@@ -7,4 +7,4 @@ export interface ILogoProps {
|
|
|
7
7
|
style?: CSSProperties;
|
|
8
8
|
handleClick?: () => void;
|
|
9
9
|
}
|
|
10
|
-
export declare const Logo:
|
|
10
|
+
export declare const Logo: React.ForwardRefExoticComponent<ILogoProps & React.RefAttributes<unknown>>;
|
package/build/index.js
CHANGED
|
@@ -2572,7 +2572,7 @@ var fullLogoMap = {
|
|
|
2572
2572
|
teal: SvgTeal,
|
|
2573
2573
|
};
|
|
2574
2574
|
|
|
2575
|
-
var Logo =
|
|
2575
|
+
var Logo = React.forwardRef(function (_a, ref) {
|
|
2576
2576
|
var _b = _a.type, type = _b === void 0 ? 'full' : _b, _c = _a.color, color = _c === void 0 ? 'teal' : _c, holiday = _a.holiday, style = _a.style, handleClick = _a.handleClick;
|
|
2577
2577
|
var LogoComponent;
|
|
2578
2578
|
if (holiday) {
|