6 lines
108 B
TypeScript
6 lines
108 B
TypeScript
|
|
import {SVGProps} from "react";
|
||
|
|
|
||
|
|
export type IconSvgProps = SVGProps<SVGSVGElement> & {
|
||
|
|
size?: number;
|
||
|
|
};
|