mirror of
https://gh.wpcy.net/https://github.com/elementor/hello-theme.git
synced 2026-04-28 12:22:20 +08:00
12 lines
253 B
JavaScript
12 lines
253 B
JavaScript
import { ReactComponent as YoutubeIcon } from '../../images/BrandYoutube.svg';
|
|
import SvgIcon from '@elementor/ui/SvgIcon';
|
|
|
|
const BrandYoutubeIcon = () => {
|
|
return (
|
|
<SvgIcon>
|
|
<YoutubeIcon />
|
|
</SvgIcon>
|
|
);
|
|
};
|
|
|
|
export default BrandYoutubeIcon;
|