import React from 'react' const colors = require('tailwindcss/colors') const stroke = { light: 'none', dark: 'none', hax0r: 'none', lgbtq: 'none', trans: 'none', } let step = 0 const fill = { light: ( ), dark: ( ), bureaucrats: ( ), hax0r: ( {[0,1,2,3,4,5,6,7,8,9].map( i => ( <> ))} ), lgbtq: ( {['red', 'orange', 'yellow', 'green', 'blue', 'violet'].map(c => { let next = step + 100/6 let stop = <> step = next return stop })} ), trans: ( ), } const Logo = ({ size=false, className='', theme='light' }) => { const svgProps = { xmlns: 'http://www.w3.org/2000/svg', viewBox: '0 0 48 48', className: className } if (size) { svgProps.width = size svgProps.height = size } return ( {fill[theme]} ) } export default Logo