12 lines
402 B
TypeScript
12 lines
402 B
TypeScript
import type { SVGProps } from 'react';
|
|
import React from 'react';
|
|
export declare const CollapsedFolderIcon: React.FC<SVGProps<SVGSVGElement> & {
|
|
readonly color: string;
|
|
}>;
|
|
export declare const ExpandedFolderIcon: React.FC<SVGProps<SVGSVGElement> & {
|
|
readonly color: string;
|
|
}>;
|
|
export declare const ExpandedFolderIconSolid: React.FC<SVGProps<SVGSVGElement> & {
|
|
readonly color: string;
|
|
}>;
|