14 lines
298 B
TypeScript
14 lines
298 B
TypeScript
|
import * as React from 'react';
|
||
|
interface IconProps extends React.SVGAttributes<SVGElement> {
|
||
|
children?: never;
|
||
|
color?: string;
|
||
|
}
|
||
|
/**
|
||
|
*
|
||
|
*
|
||
|
* @usage
|
||
|
*
|
||
|
*/
|
||
|
export declare const BuildingOfficeIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
|
||
|
export {};
|