@xyo-network/react-shared
Version:
Common React library for all XYO projects that use React
64 lines • 1.62 kB
TypeScript
import type { CSSProperties } from 'react';
export interface GradientStyles {
background: CSSProperties;
border: CSSProperties;
heading: CSSProperties;
}
export declare const colorfulGradientLightMode: () => {
background: {
backgroundImage: string;
};
border: {
borderImage: string;
borderImageSlice: number;
borderImageSource: string;
borderRadius: number;
borderStyle: string;
borderWidth: string;
};
heading: {
WebkitBackgroundClip: string;
WebkitTextFillColor: string;
background: string;
display: string;
};
};
export declare const colorfulGradientDarkMode: () => {
background: {
backgroundImage: string;
};
border: {
borderImage: string;
borderImageSlice: number;
borderImageSource: string;
borderRadius: number;
borderStyle: string;
borderWidth: string;
};
heading: {
WebkitBackgroundClip: string;
WebkitTextFillColor: string;
background: string;
display: string;
};
};
export declare const useGradientStyles: () => {
background: {
backgroundImage: string;
};
border: {
borderImage: string;
borderImageSlice: number;
borderImageSource: string;
borderRadius: number;
borderStyle: string;
borderWidth: string;
};
heading: {
WebkitBackgroundClip: string;
WebkitTextFillColor: string;
background: string;
display: string;
};
};
//# sourceMappingURL=GradientStyles.d.ts.map