import React from 'react' import { LineDrawingWrapper } 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 = 0.5 /** * A linedrawing component for Jane * * @component * @param {object} props - All component props * @param {string} props.className - Any CSS classes to apply * @param {number} props.stroke - The stroke width to apply * @returns {JSX.Element} */ export const Jane = ({ className, stroke = 1 }) => ( ) /** * A linedrawing component for the front of Jane * * @component * @param {object} props - All component props * @param {string} props.className - Any CSS classes to apply * @param {number} props.stroke - The stroke width to apply * @returns {JSX.Element} */ export const JaneFront = ({ className, stroke = 1 }) => ( ) /** * A linedrawing component for the back of Jane * * @component * @param {object} props - All component props * @param {string} props.className - Any CSS classes to apply * @param {number} props.stroke - The stroke width to apply * @returns {JSX.Element} */ export const JaneBack = ({ className, stroke = 1 }) => ( ) /* * SVG elements for the front */ const Front = () => ( <> ) /* * SVG elements for the back */ const Back = () => ( <> )