import React, { FC } from 'react' import { I_ICON_PROPS } from './types' import Icon from '@apass/icon' import AlertIcon from './Alert' import ArrowTopIcon from './ArrowTop' import ArrowRightIcon from './ArrowRight' import ArrowDownIcon from './ArrowDown' import ArrowLeftIcon from './ArrowLeft' import CheckIcon from './Check' import CrossIcon from './Cross' import DeleteIcon from './Delete' import HamburgerIcon from './Hamburger' import UploadIcon from './Upload' import DownloadIcon from './Download' import AddIcon from './Add' import RemoveIcon from './Remove' import CompareIcon from './Compare' import TableViewIcon from './TableView' import PencilIcon from './Pencil' import BusIcon from './Bus' import SwapHorizIcon from './SwapHoriz' import ArrowWestIcon from './ArrowWest' import ArrowEastIcon from './ArrowEast' import ArrowNorthIcon from './ArrowNorth' import ArrowSouthIcon from './ArrowSouth' import FilterIcon from './Filter' import FilterOffIcon from './FilterOff' const Alert: FC = (props) => const ArrowTop: FC = (props) => const ArrowRight: FC = (props) => const ArrowDown: FC = (props) => const ArrowLeft: FC = (props) => const Check: FC = (props) => const Cross: FC = (props) => const Delete: FC = (props) => const Hamburger: FC = (props) => const Upload: FC = (props) => const Download: FC = (props) => const Add: FC = (props) => const Remove: FC = (props) => const Compare: FC = (props) => const TableView: FC = (props) => const Pencil: FC = (props) => const Bus: FC = (props) => const SwapHoriz: FC = (props) => const ArrowWest: FC = (props) => const ArrowEast: FC = (props) => const ArrowNorth: FC = (props) => const ArrowSouth: FC = (props) => const Filter: FC = (props) => const FilterOff: FC = (props) => export { Alert, ArrowTop, ArrowRight, ArrowDown, ArrowLeft, Check, Cross, Delete, Hamburger, Upload, Download, Add, Remove, Compare, TableView, Pencil, Bus, SwapHoriz, ArrowWest, ArrowEast, ArrowNorth, ArrowSouth, Filter, FilterOff }