via-icons/dist/solid/BuildingOfficeIcon.d.ts

25 lines
539 B
TypeScript
Raw Normal View History

2024-07-28 23:23:49 -06:00
import * as React from 'react';
interface IconProps extends React.SVGAttributes<SVGElement> {
children?: never;
color?: string;
}
/**
2024-07-29 20:56:59 -06:00
* @name BuildingOfficeIcon
*
* @category outline
*
* @description
*
2024-07-28 23:23:49 -06:00
*
*
* @usage
*
2024-07-29 20:56:59 -06:00
*
* @accessibility
* Asegurarse de incluir un atributo `aria-label` o `aria-hidden="true"` si el ícono es decorativo.
*
* @returns {JSX.Element} Componente SVG.
2024-07-28 23:23:49 -06:00
*/
export declare const BuildingOfficeIcon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<SVGSVGElement>>;
export {};