import React from 'react' import { logoPath } from '@freesewing/config' /** * The FreeSewing logo, aka Skully, as a React component * * @component * @param {object} props - All component props * @param {string} [props.className = "tw:w-20 tw:h-20"] - Custom CSS classes to apply * @param {string} [props.stroke = undefined] - Set this explicitly to use a different stroke color * @returns {JSX.Element} */ export const FreeSewingLogo = ({ className = 'tw:w-20 tw:h-20', stroke }) => ( )