UNPKG

@werk1/w1-system-videoblock

Version:

Universal video player supporting YouTube, Vimeo, HLS, DASH with coordination and GSAP integration for W1 System

25 lines (24 loc) 716 B
import React from 'react'; /** * Props interface for the PlayIcon component */ export interface PlayIconProps { /** Color of the icon */ color?: string; /** Size of the icon */ size?: number; /** CSS class name */ className?: string; } /** * Modern SVG play icon component for W1VideoBlock controls * * @component * @param {Object} props - Component props * @param {string} [props.color='currentColor'] - Color of the icon * @param {number} [props.size=20] - Size of the icon in pixels * @param {string} [props.className=''] - Additional CSS class name * @returns {JSX.Element} Rendered play icon */ export declare const PlayIcon: React.FC<PlayIconProps>; export default PlayIcon;