import React from 'react' import { LineDrawingWrapper, thin, dashed } from './shared.mjs' const strokeScale = 0.5 export const Bibi = ({ 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 BibiFront = ({ 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 back */ export const BibiBack = ({ className = 'w-64', // 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 }) => ( <> ) /* * SVG elements for the back */ const Back = ({ stroke }) => ( <> )