UNPKG

@pdfme/ui

Version:

TypeScript base PDF generator and React base UI. Open source, developed by the community, and completely free to use under the MIT license!

11 lines (10 loc) 305 B
import React from 'react'; import { Plugin, Schema } from '@pdfme/common'; interface PluginIconProps { plugin: Plugin<Schema>; label: string; size?: number; styles?: React.CSSProperties; } declare const PluginIcon: (props: PluginIconProps) => React.JSX.Element; export default PluginIcon;