DocSpace-buildtools/web/ASC.Web.Components/src/components/icons/svg/index.js

194 lines
5.8 KiB
JavaScript
Raw Normal View History

import createStyledIcon from './create-styled-icon';
2019-06-05 13:42:41 +00:00
import OrigPeopleIcon from './people.react.svg';
import OrigCalendarIcon from './calendar.react.svg';
2019-06-10 08:53:37 +00:00
import OrigExpanderDownIcon from './expander-down.react.svg';
import OrigExpanderRightIcon from './expander-right.react.svg';
2019-06-19 14:28:00 +00:00
import OrigRotateIcon from './rotate.react.svg';
import OrigUploadIcon from './upload.react.svg';
import OrigGuestIcon from './guest.react.svg';
import OrigAdministratorIcon from './administrator.react.svg';
import OrigOwnerIcon from './owner.react.svg';
2019-06-24 13:50:54 +00:00
import OrigVerticalDotsIcon from './vertical-dots.react.svg';
2019-06-26 13:32:16 +00:00
import OrigCheckedIcon from './checked.react.svg';
import OrigIndeterminateIcon from './indeterminate.react.svg';
2019-06-26 12:38:25 +00:00
import OrigCloudServicesGoogleDriveIcon from './cloud.services.google.drive.react.svg';
2019-06-26 12:44:50 +00:00
import OrigCloudServicesDropboxIcon from './cloud.services.dropbox.react.svg';
import OrigHorizontalDotsIcon from './horizontal-dots.react.svg';
2019-06-26 12:54:53 +00:00
import OrigCloudServicesOneDriveIcon from './cloud.services.onedrive.react.svg';
import OrigCloudServicesBoxIcon from './cloud.services.box.react.svg';
2019-06-26 13:32:30 +00:00
import OrigCloudServicesNextcloudIcon from './cloud.services.nextcloud.react.svg';
2019-06-26 13:53:34 +00:00
import OrigCommunityIcon from './community.react.svg';
2019-06-26 13:58:16 +00:00
import OrigAppsIcon from './apps.react.svg';
import OrigCalendarCheckedIcon from './calendar.checked.react.svg';
2019-06-26 14:13:57 +00:00
import OrigCrmIcon from './crm.react.svg';
2019-06-26 14:16:09 +00:00
import OrigDocumentsIcon from './documents.react.svg';
2019-06-26 14:19:37 +00:00
import OrigFollowIcon from './follow.react.svg';
2019-06-26 14:21:35 +00:00
import OrigMailIcon from './mail.react.svg';
2019-06-26 14:23:10 +00:00
import OrigMoneyIcon from './money.react.svg';
2019-06-26 14:33:41 +00:00
import OrigProjectsIcon from './projects.react.svg';
2019-06-26 14:39:55 +00:00
import OrigSearchIcon from './search.react.svg';
2019-06-26 15:31:17 +00:00
import OrigSettingsIcon from './settings.react.svg';
import OrigProjectDocumentsUpIcon from './project.documents.up.react.svg';
import OrigProjectsTemplatesIcon from './projects.templates.react.svg';
2019-06-26 14:51:39 +00:00
import OrigItemPausedIcon from './item.paused.react.svg';
import OrigProjectsTasksIcon from './projects.tasks.react.svg';
import OrigActionsReportsIcon from './actions.reports.react.svg';
import OrigProjectsMilestoneIcon from './projects.milestone.react.svg';
2019-06-26 15:24:04 +00:00
import OrigItemActiveIcon from './item.active.react.svg';
2019-06-26 15:26:01 +00:00
import OrigDownloadIcon from './download.react.svg';
import OrigCatalogPortfolioIcon from './catalog.portfolio.react.svg';
export const PeopleIcon = createStyledIcon(
OrigPeopleIcon,
'PeopleIcon'
);
export const CalendarIcon = createStyledIcon(
OrigCalendarIcon,
'CalendarIcon'
2019-06-05 13:42:41 +00:00
);
2019-06-10 08:53:37 +00:00
export const ExpanderDownIcon = createStyledIcon(
OrigExpanderDownIcon,
'ExpanderDownIcon'
2019-06-05 13:42:41 +00:00
);
2019-06-10 08:53:37 +00:00
export const ExpanderRightIcon = createStyledIcon(
OrigExpanderRightIcon,
'ExpanderRight'
);
2019-06-19 14:28:00 +00:00
export const RotateIcon = createStyledIcon(
OrigRotateIcon,
'RotateIcon'
);
export const UploadIcon = createStyledIcon(
OrigUploadIcon,
'UploadIcon'
);
export const GuestIcon = createStyledIcon(
OrigGuestIcon,
'GuestIcon'
);
export const AdministratorIcon = createStyledIcon(
OrigAdministratorIcon,
'AdministratorIcon'
);
export const OwnerIcon = createStyledIcon(
OrigOwnerIcon,
'OwnerIcon'
2019-06-24 13:50:54 +00:00
);
export const VerticalDotsIcon = createStyledIcon(
OrigVerticalDotsIcon,
2019-06-25 15:49:12 +00:00
'VerticalDotsIcon'
);
2019-06-26 13:32:16 +00:00
export const CheckedIcon = createStyledIcon(
OrigCheckedIcon,
'CheckedIcon'
2019-06-25 15:49:12 +00:00
);
2019-06-26 13:32:16 +00:00
export const IndeterminateIcon = createStyledIcon(
OrigIndeterminateIcon,
'IndeterminateIcon'
2019-06-26 12:38:25 +00:00
);
export const CloudServicesGoogleDriveIcon = createStyledIcon(
OrigCloudServicesGoogleDriveIcon,
'CloudServicesGoogleDriveIcon'
2019-06-26 12:44:50 +00:00
);
export const CloudServicesDropboxIcon = createStyledIcon(
OrigCloudServicesDropboxIcon,
'CloudServicesDropboxIcon'
);
export const HorizontalDotsIcon = createStyledIcon(
OrigHorizontalDotsIcon,
'HorizontalDotsIcon'
2019-06-26 12:54:53 +00:00
);
export const CloudServicesOneDriveIcon = createStyledIcon(
OrigCloudServicesOneDriveIcon,
'CloudServicesOneDriveIcon'
);
export const CloudServicesBoxIcon = createStyledIcon(
OrigCloudServicesBoxIcon,
'CloudServicesBoxIcon'
2019-06-26 13:32:30 +00:00
);
export const CloudServicesNextcloudIcon = createStyledIcon(
OrigCloudServicesNextcloudIcon,
'CloudServicesNextcloudIcon'
2019-06-26 13:53:34 +00:00
);
export const CommunityIcon = createStyledIcon(
OrigCommunityIcon,
'CommunityIcon'
2019-06-26 13:58:16 +00:00
);
export const AppsIcon = createStyledIcon(
OrigAppsIcon,
'AppsIcon'
);
export const CalendarCheckedIcon = createStyledIcon(
OrigCalendarCheckedIcon,
'CalendarCheckedIcon'
);
2019-06-26 14:13:57 +00:00
export const CrmIcon = createStyledIcon(
OrigCrmIcon,
'CrmIcon'
);
2019-06-26 14:16:09 +00:00
export const DocumentsIcon = createStyledIcon(
OrigDocumentsIcon,
'DocumentsIcon'
);
2019-06-26 14:19:37 +00:00
export const FollowIcon = createStyledIcon(
OrigFollowIcon,
'FollowIcon'
);
2019-06-26 14:21:35 +00:00
export const MailIcon = createStyledIcon(
OrigMailIcon,
'MailIcon'
);
2019-06-26 14:23:10 +00:00
export const MoneyIcon = createStyledIcon(
OrigMoneyIcon,
'MoneyIcon'
);
2019-06-26 14:33:41 +00:00
export const ProjectsIcon = createStyledIcon(
OrigProjectsIcon,
'ProjectsIcon'
);
2019-06-26 14:39:55 +00:00
export const SearchIcon = createStyledIcon(
OrigSearchIcon,
'SearchIcon'
);
2019-06-26 15:31:17 +00:00
export const SettingsIcon = createStyledIcon(
OrigSettingsIcon,
'SettingsIcon'
);
export const ProjectDocumentsUpIcon = createStyledIcon(
OrigProjectDocumentsUpIcon,
'ProjectDocumentsUpIcon'
);
export const ProjectsTemplatesIcon = createStyledIcon(
OrigProjectsTemplatesIcon,
'ProjectsTemplatesIcon'
);
2019-06-26 14:51:39 +00:00
export const ItemPausedIcon = createStyledIcon(
OrigItemPausedIcon,
'ItemPausedIcon'
);
export const ProjectsTasksIcon = createStyledIcon(
OrigProjectsTasksIcon,
'ProjectsTasksIcon'
);
export const ActionsReportsIcon = createStyledIcon(
OrigActionsReportsIcon,
'ActionsReportsIcon'
);
export const ProjectsMilestoneIcon = createStyledIcon(
OrigProjectsMilestoneIcon,
'ProjectsMilestoneIcon'
);
2019-06-26 15:24:04 +00:00
export const ItemActiveIcon = createStyledIcon(
OrigItemActiveIcon,
'ItemActiveIcon'
);
2019-06-26 15:26:01 +00:00
export const DownloadIcon = createStyledIcon(
OrigDownloadIcon,
'DownloadIcon'
);
export const CatalogPortfolioIcon = createStyledIcon(
OrigCatalogPortfolioIcon,
'CatalogPortfolioIcon'
);