Refactor/new menu item (#1448)

* wip

* finished

* Added disabled

* Fixed disabled

* Finished cleaning

* Minor fixes from merge

* Added docs

* Added PascalCase

* Fix from review

* Fixes from merge

* Fix lint

* Fixed storybook tests
This commit is contained in:
Lucas Bordeau
2023-09-06 16:41:26 +02:00
committed by GitHub
parent 5c7660f588
commit 28ca9a9e49
96 changed files with 816 additions and 918 deletions

View File

@ -12,26 +12,26 @@ export const availableSorts: SortType<Companies_Order_By>[] = [
{
key: 'name',
label: 'Name',
icon: <IconBuildingSkyscraper size={16} />,
Icon: IconBuildingSkyscraper,
},
{
key: 'employees',
label: 'Employees',
icon: <IconUsers size={16} />,
Icon: IconUsers,
},
{
key: 'domainName',
label: 'Url',
icon: <IconLink size={16} />,
Icon: IconLink,
},
{
key: 'address',
label: 'Address',
icon: <IconMap size={16} />,
Icon: IconMap,
},
{
key: 'createdAt',
label: 'Creation',
icon: <IconCalendarEvent size={16} />,
Icon: IconCalendarEvent,
},
];