@fluentui/react-northstar
Version:
A themable React component library.
14 lines (13 loc) • 596 B
TypeScript
import { ComponentWithAs } from '@fluentui/react-bindings';
import { SvgIconProps, SvgIconChildrenFn } from '@fluentui/react-icons-northstar';
export declare type SvgIconStylesProps = Required<Pick<SvgIconProps, 'bordered' | 'circular' | 'disabled' | 'outline' | 'rotate' | 'size' | 'xSpacing'>>;
/**
* An SvgIcon displays a pictogram with semantic meaning.
*/
export declare const SvgIcon: ComponentWithAs<'span', SvgIconProps & {
children: SvgIconChildrenFn<SvgIconProps>;
}> & {
handledProps: (keyof (SvgIconProps & {
children: SvgIconChildrenFn<SvgIconProps>;
}))[];
};