UNPKG

@qn-pandora/pandora-visualization

Version:

Pandora 通用可视化库

11 lines (10 loc) 298 B
import React from 'react'; import { ColorResult } from 'react-color'; interface IBlockPickerProps { fontColor: string; onChange: (fontColor: ColorResult) => void; } export default class BlockPickers extends React.Component<IBlockPickerProps> { render(): React.JSX.Element; } export {};