0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

自然係鯖とは?大学は?年収は?すべて調べてみました!

Last updated at Posted at 2023-12-09

こんにちは!私はTypeScriptをこよなく愛し愛され足の踏み場にされているあきかきです!

技術記事を書く場所なので一応TypeScriptのコードを置いておきます

Discordのロールみたいなやつが追加できるやつ

import { MouseEventHandler } from "react";



export const RoleLikeButton = ({ color , name , onClick , isMe } : { color : string ; name : string, onClick ?: MouseEventHandler , isMe ?: boolean}) => {
    if(typeof color === "undefined" || color === "#0") color = "#9CA3AF"
    return (
        <button
            style={isMe ? { borderColor: "#4B5563"} : {}}
            className="flex flex-1 h-5 w-auto m-2 px-2.5 py-0.5 border border-gray-300 rounded justify-start items-center bg-gray-100"
            onClick={onClick}
        >
            <div 
                style={{backgroundColor : color}}
                className="h-3 w-3 rounded-full mr-2"
            ></div>
            <p className="text-sm text-gray-600"> {name.split('').splice(0,name.length > 10 ? 10 : name.length).join('')+`${name.length > 10 ? "..." : ""}`} </p>
        </button>
    )
}

本題

自然係鯖とは?年収とは?全部調べてみました!

自然係鯖とは?

自然係鯖とは HP より参加できる素晴らしいサーバーです!

結果

調べた結果、自然係鯖ということ以外分かりませんでした!
皆さんも調べてみてください!

終わりに

こんなクソ記事書いてごめんなさい

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?