UNPKG

no-mui-icons-filled

Version:

Filled (standard) Material UI Icons repackaged without MUI dependencies

6 lines (5 loc) 495 B
export function DoubleArrowFilledIcon({ className, ...props }) { return ( <svg className={`no-mui-icon no-mui-filled-icon no-mui-double-arrow-filled-icon ${ className ?? '' }`} {...props} xmlns="http://www.w3.org/2000/svg" enableBackground="new 0 0 24 24" height="24" viewBox="0 0 24 24" width="24"><g><rect fill="none" height="24" width="24"/></g><g><g><polygon points="15.5,5 11,5 16,12 11,19 15.5,19 20.5,12"/><polygon points="8.5,5 4,5 9,12 4,19 8.5,19 13.5,12"/></g></g></svg> ); }