react-line-awesome-svg
Version:
Use line-awesome as react svg component
7 lines (6 loc) • 557 B
JavaScript
import * as React from 'react';
export function SvgDiceSolid(props) {
return (React.createElement("svg", Object.assign({ viewBox: "0 0 32 32", width: "1em", height: "1em" }, props),
React.createElement("path", { d: "M12 1L0 13l12 12 12-12L12 1zm0 2.8l9.2 9.2-9.2 9.2L2.8 13 12 3.8zM12 8a1 1 0 000 2 1 1 0 000-2zm-4 4a1 1 0 000 2 1 1 0 000-2zm4 0a1 1 0 000 2 1 1 0 000-2zm4 0a1 1 0 000 2 1 1 0 000-2zm10.8 1l-2 2H30v12H18v-5.2l-2 2V29h16V13h-5.2zM12 16a1 1 0 000 2 1 1 0 000-2zm12 4a1 1 0 000 2 1 1 0 000-2z" })));
}
export default SvgDiceSolid;