You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/resources/js/Global/utils/icons/index.js

32 lines
739 B

import Basic from './categories/basic'
import Business from './categories/business'
import Form from './categories/form'
import Multimedia from './categories/multimedia'
import Smileys from './categories/smileys'
import SocialMedia from './categories/social-media'
import Statistics from './categories/statistics'
import Technology from './categories/technology'
import Transportation from './categories/transportation'
import Others from './categories/others'
const AllIcons = [
...Basic.icons,
...Technology.icons,
];
export const AllCategoriesIcon = [
Basic,
Business,
Form,
Multimedia,
Smileys,
SocialMedia,
Statistics,
Technology,
Transportation,
Others
];
export default AllIcons;