// Add Icon function renderPicture(data: any /* , cell: any, row: any */) { return `
` } // Name function renderName(data: any /* , cell: any, row: any */) { return `${data}` } // Position function renderPosition(data: any /* , cell: any, row: any */) { return `${data}` } // Status function renderStatus(data: any /* , cell: any, row: any */) { return `
${data}
` } // Button function renderButton(data: any, cell: any, row: any) { return `
` } export const optionsUsers = { perPageSelect: [5, 10, 20, 25, 50, 100], perPage: 10, columns: [ { select: 0, hidden: true }, { select: 1, render: renderPicture, sortable: false }, { select: 2, render: renderName }, { select: 3, render: renderPosition }, { select: 4, render: renderStatus }, { select: 5, render: renderButton, sortable: false }, ], data: { headings: ['ID', 'Picture', 'Name', 'Position', 'Status', 'Actions'], data: [ [ 0, '/images/avatars/svg/vuero-1.svg', 'Erik Kovalsky', 'Product Manager', 'busy', true, ], [1, 'https://media.cssninja.io/content/avatars/7.jpg', 'Alice Carasca', 'Software Engineer', 'offline', true], [2, 'https://media.cssninja.io/content/avatars/13.jpg', 'Tara Svenson', 'UI/UX Designer', 'offline', true], [3, 'https://media.cssninja.io/content/avatars/5.jpg', 'Mary Lebowski', 'Project Manager', 'available', true], [ 4, '/images/avatars/placeholder-f.jpg', 'Kaylee Jennings', 'Web Developer', 'available', true, ], [5, 'https://media.cssninja.io/content/avatars/27.jpg', 'Carmen Escudero', 'HR Manager', 'offline', true], [6, 'https://media.cssninja.io/content/avatars/22.jpg', 'Dwayne Hicks', 'Product Manager', 'offline', true], [ 7, '/images/avatars/placeholder-m.jpg', 'Paul Morris', 'Backend Developer', 'available', true, ], [ 8, 'https://media.cssninja.io/content/avatars/23.jpg', 'Irina Vierbovsky', 'Project Manager', 'available', true, ], [9, 'https://media.cssninja.io/content/avatars/28.jpg', 'Edouard Falant', 'Web Developer', 'busy', true], [ 10, '/images/avatars/placeholder-f.jpg', 'Shana Williams', 'Sales Manager', 'offline', true, ], [ 11, '/images/avatars/placeholder-m.jpg', 'Benjamin Hoffman', 'Product Manager', 'offline', true, ], [12, 'https://media.cssninja.io/content/avatars/39.jpg', 'Alejandro Badajoz', 'Web Developer', 'busy', true], [ 13, 'https://media.cssninja.io/content/avatars/21.jpg', 'Elizabeth Fisher', 'Mobile Developer', 'available', true, ], [14, 'https://media.cssninja.io/content/avatars/37.jpg', 'Helmut Fritz', 'Product Manager', 'available', true], [15, 'https://media.cssninja.io/content/avatars/31.jpg', 'Yasseen Amzi', 'Business Analyst', 'offline', true], ], }, }