webstreamnew / components /icon /IconExpand.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 IconExpand: FC<IconProps> = ({ className = "", sizeClassName }) => {
return (
<Icon className={className} sizeClassName={sizeClassName} viewBox='0 0 24 24'>
<path
fill='currentColor'
d='M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z'
/>
</Icon>
)
}
export default IconExpand