
Similar icons
30
Preview
Color
Frame
Component
IconPhDiceThreeBold.tsx
import * as React from "react";
// By: ph// See: https://v0.app/icon/ph/dice-three-bold// Example: <IconPhDiceThreeBold width="24px" height="24px" style={{color: "#000000"}} />
export const IconPhDiceThreeBold = ({ height = "1em", fill = "currentColor", focusable = "false", ...props}: Omit<React.SVGProps<SVGSVGElement>, "children">) => ( <svg role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 256 256" height={height} focusable={focusable} {...props} > <path fill={fill} d="M192 28H64a36 36 0 0 0-36 36v128a36 36 0 0 0 36 36h128a36 36 0 0 0 36-36V64a36 36 0 0 0-36-36m12 164a12 12 0 0 1-12 12H64a12 12 0 0 1-12-12V64a12 12 0 0 1 12-12h128a12 12 0 0 1 12 12ZM104 88a16 16 0 1 1-16-16a16 16 0 0 1 16 16m40 40a16 16 0 1 1-16-16a16 16 0 0 1 16 16m40 40a16 16 0 1 1-16-16a16 16 0 0 1 16 16" /> </svg>);