@react-smufl/core
Version:
React component library for rendering sheet music with SMuFL-compliant music font
12 lines • 504 B
TypeScript
import { SVGPathElementDefaultProps } from '../utils/types';
export type StaffPathMetaProps = {
staffPathLineThickness: number;
};
export type StaffPathProps = {
width: number;
lines?: 1 | 2 | 3 | 4 | 5 | 6 | undefined;
x?: number | undefined;
y?: number | undefined;
} & SVGPathElementDefaultProps;
export declare const coreStaffPath: ({ staffPathLineThickness }: StaffPathMetaProps) => ({ width, lines, x, y }: StaffPathProps) => JSX.Element;
//# sourceMappingURL=StaffPath.d.ts.map