UNPKG

@react-smufl/core

Version:

React component library for rendering sheet music with SMuFL-compliant music font

11 lines 434 B
import { SVGPathElementDefaultProps } from '../utils/types'; export type ClefPathMetaProps = { path: string; }; export type ClefPathProps = { scale?: number | undefined; x?: number | undefined; y?: number | undefined; } & SVGPathElementDefaultProps; export declare const coreClefPath: ({ path }: ClefPathMetaProps) => ({ scale: s, x, y, ...props }: ClefPathProps) => JSX.Element; //# sourceMappingURL=ClefPath.d.ts.map