選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12 行
377B

  1. import { FaItunes, FaSpotify, FaTwitter } from 'react-icons/fa';
  2. export default function LinkList() {
  3. return (
  4. <span className="flex flex-row justify-evenly w-1/3 bg-blue-900 bg-gradient-to-t top-1 bottom-1 rounded">
  5. <FaTwitter color="#1DA1F2" />
  6. <FaSpotify color="#1DB954" />
  7. <FaItunes color="white" />
  8. </span>
  9. )
  10. }