, "">;
export function ArticleInteractionButtons({
children,
className,
emphasis, //to change displaying of component
...props
}: ArticleButtonProps) {
const abstractButton = (
);
const fileInteractionButtons = interactionButtonsStore.map((button) => {
return (
);
});
return (
{emphasis === "low" && !children ? abstractButton : null}
{children ? children : fileInteractionButtons}
);
}
ArticleInteractionButtons.displayName = "ArticleInteractionButtons";