apphouse
Version:
Component library for React that uses observable state management and theme-able components.
7 lines (6 loc) • 327 B
TypeScript
/**
* Generates a gradient box shadow based on an array of colors.
* @param {string[]} colors - An array of colors to generate the gradient box shadow. Maximum 7 colors.
* @returns {string} The gradient box shadow generated from the given colors.
*/
export declare const getGradientBoxShadow: (colors: string[]) => string;