import React from 'react' import { LineDrawingWrapper, thin, dashed } from './shared.mjs' const strokeScale = 0.6 export const Lunetius = ({ 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 LunetiusFront = ({ 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 }) => ( <> )