takumi 2.3.2

Render UI component trees to images.
Documentation
<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>style_border_width_on_image_node</title>
    <link rel="stylesheet" href="../shared.css" />
  </head>
  <body style="width: 1200px; height: 630px">
    <div
      style="
        display: flex;
        width: 100%;
        height: 100%;
        background-color: rgb(255, 255, 255);
        justify-content: center;
        align-items: center;
      "
    >
      <img
        src="assets/images/yeecord.png"
        style="
          display: flex;
          border-top-left-radius: 100% 100%;
          border-top-right-radius: 100% 100%;
          border-bottom-right-radius: 100% 100%;
          border-bottom-left-radius: 100% 100%;
          border-top-width: 2px;
          border-right-width: 2px;
          border-bottom-width: 2px;
          border-left-width: 2px;
          border-top-style: solid;
          border-right-style: solid;
          border-bottom-style: solid;
          border-left-style: solid;
          border-top-color: rgb(202, 202, 202);
          border-right-color: rgb(202, 202, 202);
          border-bottom-color: rgb(202, 202, 202);
          border-left-color: rgb(202, 202, 202);
          width: 128px;
          height: 128px;
        "
      />
    </div>
  </body>
</html>