A decentralized music tracking and discovery platform built on AT Protocol 馃幍
at feat/discord-webhook 26 lines 660 B view raw
1import React, { FC } from "react"; 2import Svg, { Path } from "react-native-svg"; 3 4export type DiscProps = { 5 size?: number; 6 color?: string; 7 width?: number; 8 height?: number; 9}; 10 11const DiscIcon: FC<DiscProps> = ({ size = 24, color = "#fff", ...props }) => ( 12 <Svg 13 viewBox={`0 0 ${size} ${size}`} 14 width={props.width || size} 15 height={props.height || size} 16 aria-hidden 17 fill={color} 18 color="initial" 19 {...props} 20 > 21 <Path d="M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2zm0 18a8 8 0 1 1 8-8 8 8 0 0 1-8 8z" /> 22 <Path d="M12 8a4 4 0 1 0 4 4 4 4 0 0 0-4-4zm0 6a2 2 0 1 1 2-2 2 2 0 0 1-2 2z" /> 23 </Svg> 24); 25 26export default DiscIcon;