fix(32-03): correct video icon import path

Change from non-existent icons8-video-call-50.png to existing video.svg

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Nuwan 2026-03-05 22:15:13 +05:30
parent f4740436b7
commit 14e9834f72
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import React, { useState, useCallback, memo } from 'react';
import { Button, Spinner } from 'reactstrap'; import { Button, Spinner } from 'reactstrap';
import { toast } from 'react-toastify'; import { toast } from 'react-toastify';
import PropTypes from 'prop-types'; import PropTypes from 'prop-types';
import videoIcon from '../../assets/images/icons8-video-call-50.png'; import videoIcon from '../../assets/img/client/video.svg';
/** /**
* Self-contained video button with colocated loading state. * Self-contained video button with colocated loading state.