Repository URL to install this package:
Version:
0.9.6 ▾
|
ui-component-library
/
dist
/
typings
/
src
/
components
/
atoms
/
Icons
/
AccountIcon
/
AccountIcon.d.ts
|
---|
import React from 'react';
import { DefaultProps } from 'icons/typings';
interface Props extends DefaultProps {
fill: string;
stroke: string;
}
declare class AccountIcon extends React.PureComponent<Props> {
/**
* passing the vector props here, since its not consider
* by the Vector.tsx when we assigning it directly
* Ex: <Vector width="44px" height="39px" ...>
*/
static defaultProps: {
width: string;
height: string;
viewBox: string;
fill: string;
stroke: string;
};
render(): JSX.Element;
}
export { AccountIcon };
export default AccountIcon;