import styles from '@system/documents/ActionItem.module.scss';
import * as React from 'react';
export default function ActionItem(props) {
if (props.active) {
return (
{props.icon}
{props.children}
);
}
if (props.href) {
return (
{props.icon}
{props.children}
);
}
if (props.htmlFor) {
return (
);
}
return (
{props.icon}
{props.children}
);
}