import React from 'react' import { LineDrawingWrapper, regular } from './shared.mjs' /** * A linedrawing component for designs that do not (yet) have their own * * @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 MissingLinedrawing = ({ className, stroke = 1 }) => ( No line drawing (yet) )