import * as React from 'react';
import ItemIcon, { ItemIconProps } from './item-icon';
import Tooltip, { TooltipPosition } from '../components/tooltip';
const itemTypeOptions: ItemIconProps['iconType'][] = [
'default',
'audio',
'bookmark',
'boxnote',
'code',
'document',
'dwg',
'excel-spreadsheet',
'google-docs',
'google-sheets',
'google-slides',
'illustrator',
'image',
'indesign',
'keynote',
'numbers',
'pages',
'pdf',
'photoshop',
'powerpoint-presentation',
'presentation',
'spreadsheet',
'text',
'threed',
'vector',
'video',
'word-document',
'zip',
'folder-collab',
'folder-external',
'folder-plain',
];
export const itemIcons = () => {
return (
<>
{itemTypeOptions.map(t => (
iconType prop