import React from 'react' import { LineDrawingWrapper, thin, dashed } from './shared.mjs' /* * This strokeScale factor is used to normalize the stroke across * designs so we have a consistent look when showing our collection */ const strokeScale = 1.3 /** * A linedrawing component for Florence * * @param {object} props - All React props * @param {string} props.className - Any CSS classes to apply * @param {number} props.stroke - The stroke width to apply */ export const Florence = ({ className, stroke = 1 }) => ( ) // Front is the same export const FlorenceFront = Florence /* * SVG elements for the front */ export const Front = ({ stroke }) => ( <> )