Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
1.16 kB
// @flow
import * as React from "react";
import cn from "classnames";
import { Icon } from "../../components";
type Props = {|
+children?: React.Node,
+className?: string,
+RootComponent?: React.ElementType,
+active?: boolean,
+action?: boolean,
+icon?: string,
+to?: string,
|};
function ListGroupItem({
className,
children,
RootComponent,
active,
action,
icon,
to,
}: Props): React.Node {
const classes = cn(
"list-group-item",
{
"list-group-item-action": action,
},
{
active: active,
},
className
);
// const Component = RootComponent || "a";
return RootComponent ? (
<RootComponent to={to} className={classes}>
{icon && (
<span className="mr-3 icon">
<Icon prefix="fe" name={icon} />{" "}
</span>
)}
{children}
</RootComponent>
) : (
<a className={classes} href={to}>
{icon && (
<span className="mr-3 icon">
<Icon prefix="fe" name={icon} />{" "}
</span>
)}
{children}
</a>
);
}
ListGroupItem.displayName = "List.GroupItem";
/** @component */
export default ListGroupItem;