mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-16 20:44:56 +02:00
24 lines
603 B
TypeScript
24 lines
603 B
TypeScript
import { ConfigAPI } from '@babel/core';
|
|
import { Options as Options$1 } from '@svgr/babel-plugin-transform-svg-component';
|
|
|
|
interface Options extends Options$1 {
|
|
ref?: boolean;
|
|
titleProp?: boolean;
|
|
descProp?: boolean;
|
|
expandProps?: boolean | 'start' | 'end';
|
|
dimensions?: boolean;
|
|
icon?: boolean | string | number;
|
|
native?: boolean;
|
|
svgProps?: {
|
|
[key: string]: string;
|
|
};
|
|
replaceAttrValues?: {
|
|
[key: string]: string;
|
|
};
|
|
}
|
|
declare const plugin: (_: ConfigAPI, opts: Options) => {
|
|
plugins: any[];
|
|
};
|
|
|
|
export { Options, plugin as default };
|