@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) • 723 B
TypeScript
import React from 'react';
/**
* Props interface for the PauseIcon component
*/
export interface PauseIconProps {
/** Color of the icon */
color?: string;
/** Size of the icon */
size?: number;
/** CSS class name */
className?: string;
}
/**
* Modern SVG pause 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 pause icon
*/
export declare const PauseIcon: React.FC<PauseIconProps>;
export default PauseIcon;