triangleRoundRectangle property

IconParkData triangleRoundRectangle
getter/setter pair

triangle-round-rectangle 三角圆矩形

category: Abstract 抽象图形 author: 金磊 tag: 三角圆矩形, 形状拼接 rtl: true

Implementation

static IconParkData triangleRoundRectangle = IconParkData("triangleRoundRectangle", true, (props) => '<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M20 29H6V43H20V29Z" fill="${props.c2}" stroke="${props.c1}" stroke-width="${props.strokeWidth ?? "4"}" stroke-linecap="${props.strokeLineCap?.name ?? "round"}" stroke-linejoin="${props.strokeLineJoin?.name ?? "round"}"/><path d="M24 4L34 21H14L24 4Z" fill="${props.c2}" stroke="${props.c1}" stroke-width="${props.strokeWidth ?? "4"}" stroke-linecap="${props.strokeLineCap?.name ?? "round"}" stroke-linejoin="${props.strokeLineJoin?.name ?? "round"}"/><path d="M36 44C40.4183 44 44 40.4183 44 36C44 31.5817 40.4183 28 36 28C31.5817 28 28 31.5817 28 36C28 40.4183 31.5817 44 36 44Z" fill="${props.c2}" stroke="${props.c1}" stroke-width="${props.strokeWidth ?? "4"}" stroke-linecap="${props.strokeLineCap?.name ?? "round"}" stroke-linejoin="${props.strokeLineJoin?.name ?? "round"}"/></svg>');