UNPKG

@themesberg/volt-react-dashboard

Version:

Volt React Dashboard is a free and open source admin dashboard template powered by React.js and Bootstrap 5

18 lines (14 loc) 593 B
import { faDesktop, faMobileAlt, faTabletAlt } from '@fortawesome/free-solid-svg-icons'; const trafficShares = [ { id: 1, label: "Desktop", value: 60, color: "secondary", icon: faDesktop }, { id: 2, label: "Mobile Web", value: 30, color: "primary", icon: faMobileAlt }, { id: 3, label: "Tablet Web", value: 10, color: "tertiary", icon: faTabletAlt } ]; const totalOrders = [ { id: 1, label: "July", value: [1, 5, 2, 5, 4, 3], color: "primary" }, { id: 2, label: "August", value: [2, 3, 4, 8, 1, 2], color: "secondary" } ]; export { trafficShares, totalOrders };