Skip to content

Commit

Permalink
see if icons is causing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mcgear committed Mar 22, 2024
1 parent 36c1ac0 commit 4dec166
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions src/molecules/eac/EnterpriseManagementItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
ActionGroup,
ActionStyleTypes,
} from "https://deno.land/x/fathym_atomic@v0.0.133/mod.ts";
import { Icon } from "https://deno.land/x/fathym_atomic_icons@v0.0.23/browser.ts";
// import { Icon } from "https://deno.land/x/fathym_atomic_icons@v0.0.23/browser.ts";

export const IsIsland = true;

Expand Down Expand Up @@ -116,22 +116,26 @@ export default function EnterpriseManagementItem(
{!props.active && (
<form onSubmit={(e) => setActiveEnterprise(e)}>
<Action actionStyle={ActionStyleTypes.Link}>
<Icon
{
/* <Icon
class="w-6 h-6 text-sky-500"
src={props.icons?.IconSet || "/icons/iconset"}
icon={props.icons?.BeginIcon || "begin"}
/>
/> */
}
</Action>
</form>
)}

<form onSubmit={(e) => deleteEnterprise(e)}>
<Action type="submit" actionStyle={ActionStyleTypes.Link}>
<Icon
{
/* <Icon
class="w-6 h-6 text-red-500"
src={props.icons?.IconSet || "/icons/iconset"}
icon={props.icons?.DeleteIcon || "delete"}
/>
/> */
}
</Action>
</form>
</>
Expand Down

0 comments on commit 4dec166

Please sign in to comment.