import { JSXElement } from 'solid-js';
import { SSChip } from 'src';
export const IconSpark = () => (
);
export const IconBolt = () => (
);
export const IconShield = () => (
);
export const IconUser = () => (
);
export const IconChart = () => (
);
export const IconSettings = () => (
);
export const IconBell = () => (
);
export const IconCheck = () => (
);
export const IconLink = () => (
);
export const IconDots = () => (
);
export const demoRows = [
{
name: 'Lia Morgan',
role: 'Design Ops',
status: 'Active',
updated: 'Vor 2 Tagen',
},
{
name: 'Jonas Beck',
role: 'Frontend',
status: 'Review',
updated: 'Heute',
},
{
name: 'Ava Ruiz',
role: 'Support',
status: 'Active',
updated: 'Vor 1 Stunde',
},
{
name: 'Marek Ali',
role: 'Platform',
status: 'On hold',
updated: 'Vor 5 Tagen',
},
{
name: 'Sina Weber',
role: 'Growth',
status: 'Active',
updated: 'Gestern',
},
];
export const teamOptions = [
{ id: 'blue', label: 'Blue team' },
{ id: 'gold', label: 'Gold team' },
{ id: 'orchid', label: 'Orchid team' },
];
export const peopleOptions = [
{ id: 'lia', name: 'Lia Morgan', role: 'Design Ops' },
{ id: 'jonas', name: 'Jonas Beck', role: 'Frontend' },
{ id: 'ava', name: 'Ava Ruiz', role: 'Support' },
{ id: 'marek', name: 'Marek Ali', role: 'Platform' },
{ id: 'sina', name: 'Sina Weber', role: 'Growth' },
{ id: 'tom', name: 'Tom Richter', role: 'Security' },
];
export const stackSuggestions = [
'SolidStart',
'SolidJS',
'TypeScript',
'Vite',
'Tsup',
'Tailwind',
'Radix',
];
export const renderStatus = (status: string): JSXElement => (
{status}
);