react-pdf-builder
Version:
Build beautiful PDF documents in React.
12 lines (11 loc) • 679 B
TypeScript
import { SVGProps } from '@react-pdf/renderer';
import React from 'react';
export interface ThemedSvgProps extends React.PropsWithChildren<SVGProps> {
children?: any;
/** Optional. Class name string used to style the component. [Class names](https://justinmahar.github.io/react-pdf-builder/?path=/docs/documentation-themes--docs#class-names) are defined in themes. */
className?: string;
}
/**
* Read the [full documentation for ThemedSvg](https://justinmahar.github.io/react-pdf-builder/?path=/docs/documentation-components-basics-themedsvg--docs)
*/
export declare const ThemedSvg: ({ children, className, style, ...props }: ThemedSvgProps) => React.JSX.Element;