@fortawesome/free-solid-svg-icons#faVial TypeScript Examples

The following examples show how to use @fortawesome/free-solid-svg-icons#faVial. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: App.tsx    From covid19testing-map with GNU General Public License v3.0 6 votes vote down vote up
labelMap: LabelMapType = {
  is_ordering_tests_only_for_those_who_meeting_criteria: {
    sidebar: 'Tests only those meeting criteria',
    card: 'Testing criteria',
    icon: faTasks,
  },
  is_collecting_samples: {
    sidebar: 'Collects samples for testing',
    card: 'Collects samples',
    icon: faVial,
  },
}