feature: update icons of People table

This commit is contained in:
Sammy Teillet
2023-04-19 15:58:38 +02:00
parent 0f779f9d43
commit 1a70a5ba65

View File

@ -2,10 +2,12 @@ import {
faBuildings,
faCalendar,
faEnvelope,
faRectangleList,
faUser,
faMapPin,
faPhone,
faRectangleHistory,
faList,
} from '@fortawesome/pro-regular-svg-icons';
import { faList, faMapPin, faPhone } from '@fortawesome/pro-solid-svg-icons';
import WithTopBarContainer from '../../layout/containers/WithTopBarContainer';
import Table from '../../components/table/Table';
import { Company } from '../../interfaces/company.interface';
@ -172,7 +174,7 @@ const columns = [
),
}),
columnHelper.accessor('pipe', {
header: () => <ColumnHead viewName="Pipe" viewIcon={faRectangleList} />,
header: () => <ColumnHead viewName="Pipe" viewIcon={faRectangleHistory} />,
cell: (props) => (
<ClickableCell href="#">{props.row.original.pipe.name}</ClickableCell>
),