UNPKG

react-material-icon-svg

Version:
10 lines (8 loc) 500 B
import React from 'react'; export default function CardsPlayingIcon(props) { return ( <svg viewBox="0 0 24 24" {...props} className={`rmi rmi-cards-playing ${props.className}`}> <path d="M14.7 2.2h1.5c1.1 0 2 .9 2 2v6.4l-3.5-8.4m5.4 1.6 1.3.6c1 .4 1.5 1.6 1.1 2.6l-2.4 5.9V3.8M18 15.5l-5-12c-.3-.8-1-1.2-1.8-1.2-.3 0-.5.1-.8.2L3 5.5C2 5.9 1.5 7 2 8l5 12c.3.8 1 1.2 1.8 1.2.3 0 .5 0 .8-.2l7.4-3c.8-.3 1.2-1 1.2-1.8-.1-.2-.1-.5-.2-.7m-6.6-.5-3.2-2.4.4-4 3.2 2.4-.4 4" /> </svg> ); }