UNPKG

create-nova-vite-template

Version:

This is a dashboard template built with React and Vite. It provides a modern and responsive user interface for building web applications.

17 lines (16 loc) 289 B
export default function getShadowStyle({ radius = 5, opacity = 0.2, offsetY = 2, } = {}) { return { shadowColor: "#000", shadowOpacity: opacity, shadowOffset: { width: 0, height: offsetY, }, shadowRadius: radius, elevation: radius * 0.5, }; }