import React from 'react' import { LineDrawingWrapper, thin, dashed } from './shared.mjs' const strokeScale = 0.5 export const Bee = ({ className = 'w-64', // CSS classes to apply stroke = 1, // Stroke width to use }) => { // Normalize stroke across designs stroke = stroke * strokeScale return ( ) } /* * React component for the front */ export const BeeFront = ({ className = 'h-full max-w-full m-auto text-base-content linedrawing', // CSS classes to apply stroke = 1, // Stroke width to use }) => { // Normalize stroke across designs stroke = stroke * strokeScale return ( ) } /* * SVG elements for the front */ export const Front = ({ stroke }) => ( <> )