import React from 'react' import { LineDrawingWrapper, thin, regular, dashed } from './shared.mjs' const strokeScale = 0.5 export const Cornelius = ({ 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 CorneliusFront = ({ 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 CorneliusBack = ({ 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 }) => ( <> )