UNPKG

@react-smufl/core

Version:

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

12 lines 473 B
import { coreClefPath } from './ClefPath'; import { SVGGElementDefaultProps } from '../utils/types'; export type ClefMetaProps = { ClefPath: ReturnType<typeof coreClefPath>; }; export type ClefProps = { line?: number | undefined; x?: number | undefined; y?: number | undefined; } & SVGGElementDefaultProps; export declare const coreClef: ({ ClefPath }: ClefMetaProps) => ({ children, ...props }: ClefProps) => JSX.Element; //# sourceMappingURL=Clef.d.ts.map