Const
Default icons for the DeviceSelector component.
Uses Material-UI icons by default. Replace with custom icons from any icon library or custom SVG components.
import { FaCamera, FaMicrophone, FaVolumeUp } from 'react-icons/fa';import { DeviceSelector } from '@hiyve/react-ui';const customIcons = { camera: <FaCamera />, microphone: <FaMicrophone />, speaker: <FaVolumeUp />,};<DeviceSelector icons={customIcons} onDeviceChange={handleChange} /> Copy
import { FaCamera, FaMicrophone, FaVolumeUp } from 'react-icons/fa';import { DeviceSelector } from '@hiyve/react-ui';const customIcons = { camera: <FaCamera />, microphone: <FaMicrophone />, speaker: <FaVolumeUp />,};<DeviceSelector icons={customIcons} onDeviceChange={handleChange} />
Default icons for the DeviceSelector component.