@zsnout/ithkuil
Version:
A set of tools which can generate and parse romanized Ithkuil text and which can generate Ithkuil script from text and JSON data.
12 lines (11 loc) • 461 B
JavaScript
import { jsx as _jsx } from "@zsnout/ithkuil-jsx/jsx-runtime";
/**
* Constructs a `BreakCharacter`.
*
* @param props Properties modifying this character's behavior.
* @returns An `SVGGElement` representing the character.
*/
export function Break(props) {
const size = props.size ?? 50;
return (_jsx("g", { children: _jsx("path", { fill: "none", stroke: "none", "stroke-width": 0, d: `M -${size / 2} -35 v 70 h ${size} v -70 h -${size} z` }) }));
}