webstreamnew / components /icon /IconForward.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 IconForward: FC<IconProps> = ({ className = "", sizeClassName }) => {
return (
<Icon className={className} sizeClassName={sizeClassName} viewBox='0 0 24 24'>
<path
fill='currentColor'
d='M4 18l8.5-6L4 6v12zm9-12v12l8.5-6L13 6z'
/>
</Icon>
)
}
export default IconForward