@@ -26,6 +26,8 @@ import {
2626 faArrowUpFromBracket ,
2727 faHome ,
2828 faFileLines as faSolidFileLines ,
29+ faFileAlt as faFileText ,
30+ faFilePdf ,
2931 faUpload ,
3032 faComment ,
3133 faUserCircle ,
@@ -36,12 +38,14 @@ import {
3638 faChevronUp ,
3739 faChevronDown ,
3840 faVial ,
41+ faLightbulb as faSolidLightbulb ,
3942} from '@fortawesome/free-solid-svg-icons' ;
4043import {
4144 faFileLines as faRegularFileLines ,
4245 faComment as faRegularComment ,
4346 faUser as faRegularUser ,
4447 faBookmark as faRegularBookmark ,
48+ faLightbulb as faRegularLightbulb ,
4549} from '@fortawesome/free-regular-svg-icons' ;
4650import classNames from 'classnames' ;
4751
@@ -63,6 +67,8 @@ export type IconName =
6367 | 'comment'
6468 | 'envelope'
6569 | 'fileLines'
70+ | 'fileText'
71+ | 'filePdf'
6672 | 'home'
6773 | 'house'
6874 | 'link'
@@ -86,7 +92,8 @@ export type IconName =
8692 | 'flask'
8793 | 'chevronUp'
8894 | 'chevronDown'
89- | 'vial' ;
95+ | 'vial'
96+ | 'lightbulb' ;
9097
9198/**
9299 * Properties for the `Icon` component.
@@ -114,6 +121,8 @@ const solidIcons: Record<IconName, IconProp> = {
114121 comment : faComment ,
115122 envelope : faEnvelope ,
116123 fileLines : faSolidFileLines ,
124+ fileText : faFileText ,
125+ filePdf : faFilePdf ,
117126 home : faHome ,
118127 house : faHouse ,
119128 link : faLink ,
@@ -138,6 +147,7 @@ const solidIcons: Record<IconName, IconProp> = {
138147 chevronUp : faChevronUp ,
139148 chevronDown : faChevronDown ,
140149 vial : faVial ,
150+ lightbulb : faSolidLightbulb ,
141151} ;
142152
143153/**
@@ -150,6 +160,7 @@ const regularIcons: Partial<Record<IconName, IconProp>> = {
150160 user : faRegularUser ,
151161 bookmark : faRegularBookmark ,
152162 circleXmark : faCircleXmark ,
163+ lightbulb : faRegularLightbulb ,
153164} ;
154165
155166/**
0 commit comments