UNPKG

react-iztro

Version:

基于iztro实现的react紫微斗数星盘组件。A react component used to generate an astrolabe of ziweidoushu based on iztro.

9 lines (8 loc) 223 B
import React from "react"; import { Scope } from "iztro/lib/data/types"; type LineProps = { index: number; scope?: Scope; }; export declare const Line: ({ index, scope }: LineProps) => React.JSX.Element; export {};