@react95/icons
Version:
React95 icons gallery
13 lines (12 loc) • 395 B
TypeScript
import React from 'react';
import type { SVGProps } from "react";
export declare const questionBubbleData: {
'32x32_32': (props: SVGProps<SVGSVGElement>) => React.JSX.Element;
};
export interface QuestionBubbleProps extends SVGProps<SVGSVGElement> {
/**
* Icon variant to use.
**/
variant?: '32x32_32';
}
export declare const QuestionBubble: React.FC<QuestionBubbleProps>;