no-mui-icons-filled
Version:
Filled (standard) Material UI Icons repackaged without MUI dependencies
6 lines (5 loc) • 605 B
JSX
export function PriceCheckFilledIcon({ className, ...props }) {
return (
<svg className={`no-mui-icon no-mui-filled-icon no-mui-price-check-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><path d="M0,0h24v24H0V0z" fill="none"/></g><g><g><path d="M12,13V9c0-0.55-0.45-1-1-1H7V6h5V4H9.5V3h-2v1H6C5.45,4,5,4.45,5,5v4c0,0.55,0.45,1,1,1h4v2H5v2h2.5v1h2v-1H11 C11.55,14,12,13.55,12,13z"/><polygon points="19.59,12.52 13.93,18.17 11.1,15.34 9.69,16.76 13.93,21 21,13.93"/></g></g></svg>
);
}