import React from 'react'; interface PlayIconProps extends React.HTMLProps { width?: string; height?: string; } export default function PlayIcon({ width, height, className, }: PlayIconProps): JSX.Element; export {};