UNPKG

@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.

17 lines (16 loc) 669 B
/** * Creates the underposed diacritic of a primary character as an SVG path. * * @param props Properties that modify the diacritic. * @returns An `SVGPathElement` containing the diacritic, or `undefined` if no * diacritic is needed. */ export declare function PrimaryUnderPosed({ handwritten, bottom, }: { /** Whether this character is handwritten. */ readonly handwritten?: boolean | undefined; /** * The bottom item on this character. May be a relation, such as UNF/C, UNF/K, * or FRM, or a concatenation type, such as 1 or 2. */ readonly bottom?: "UNF/C" | "UNF/K" | "FRM" | 1 | 2 | undefined; }): SVGPathElement | undefined;