File size: 1,610 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
// @flow
import * as React from "react";
import cn from "classnames";
import type { MouseEvents, PointerEvents, FocusEvents } from "../../";
type Props = {|
...MouseEvents,
...PointerEvents,
...FocusEvents,
+className?: string,
/**
* Should this icon be rendered within an <a> tag
*/
+link?: boolean,
/**
* The icon prefix
*/
+prefix?: string,
/**
* The icon name
*/
+name: string,
+isAriaHidden?: boolean,
/**
* Use the built-in payment icon set
*/
+payment?: boolean,
/**
* Use the built-in flag icon set
*/
+flag?: boolean,
|};
/**
* Display an icon.
* Uses the included feathers icon set by default but you can add your own
*/
function Icon({
prefix: prefixFromProps = "fe",
name,
className,
link,
isAriaHidden,
payment,
flag,
onClick,
onMouseEnter,
onMouseLeave,
onPointerEnter,
onPointerLeave,
onFocus,
onBlur,
}: Props): React.Node {
const prefix = (payment && "payment") || (flag && "flag") || prefixFromProps;
const classes = cn(
{
[prefix]: true,
[`${prefix}-${name}`]: true,
},
className
);
const extraProps = isAriaHidden
? {
"aria-hidden": "true",
}
: null;
const eventProps = {
onClick,
onMouseEnter,
onMouseLeave,
onPointerEnter,
onPointerLeave,
onFocus,
onBlur,
};
return !link ? (
<i className={classes} {...eventProps} />
) : (
<a className="icon" {...extraProps} {...eventProps}>
<i className={classes} />
</a>
);
}
Icon.displayName = "Icon";
/** @component */
export default Icon;
|