cssのみで 「Tシャツ」 アイコンを作成してみました。Tシャツと書かないとわかってもらえないようなクオリティになってしまいました。斜め線がむずかしいので、直線のみです。
ソース
html
<div class="t-shirts"></div>
css
/* 袖 */
.t-shirts {
font-size: 100px;
position: relative;
margin-top: 0.1em;
width: 1.4em;
height: 0.4em;
border-radius: 0.1em;
border: 0.1em solid #39a9d6;
}
/* 本体 */
.t-shirts::before {
content: "";
position: absolute;
top: 0.4em;
left: 0.2em;
width: 0.8em;
height: 0.8em;
background-color: #fff;
border-radius: 0.1em;
border-left: 0.1em solid #39a9d6;
border-right: 0.1em solid #39a9d6;
border-bottom: 0.1em solid #39a9d6;
}
/* 首 */
.t-shirts::after {
content: "";
position: absolute;
top: -0.15em;
left: 0.4em;
width: 0.4em;
height: 0.2em;
background-color: #fff;
border-radius: 100%;
border: 0.1em solid #39a9d6;
}

