UNPKG

@pnp/spfx-controls-react

Version:

Reusable React controls for SharePoint Framework solutions

16 lines 409 B
import * as React from 'react'; import { ICssInput } from '@fluentui/react/lib/Utilities'; /** * base properties for field renderes */ export interface IFieldRendererProps { /** * CSS styles to apply to the renderer */ cssProps?: React.CSSProperties; /** * CSS classes to apply to the renderer */ className?: ICssInput; } //# sourceMappingURL=IFieldRendererProps.d.ts.map