webstreamnew / components /icon /IconSoundDown.tsx
copilot-swe-agent[bot]
Update player icons to YouTube style and reorder controls
e3e71ad
import { FC } from "react"
import Icon, { IconProps } from "./Icon"
const IconSoundDown: FC<IconProps> = ({ className = "", sizeClassName }) => {
return (
<Icon className={className} sizeClassName={sizeClassName} viewBox='0 0 24 24'>
<path
fill='currentColor'
d='M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02z'
/>
</Icon>
)
}
export default IconSoundDown