/// The HTML `id` attribute value for the camera video element.
pub const CAMERA_VIDEO_ID: &str = "camera-video";
/// The CSS selector used to query the camera video element from the DOM.
pub const CAMERA_VIDEO_SELECTOR: &str = "#camera-video";
/// The `autoplay` attribute value for the camera video element.
pub const CAMERA_VIDEO_AUTOPLAY: bool = true;
/// The `playsinline` attribute value for the camera video element.
pub const CAMERA_VIDEO_PLAYSINLINE: bool = true;
/// The icon displayed in the camera placeholder when the camera is closed.
pub const CAMERA_PLACEHOLDER_ICON: &str = "📷";