Implement share and export components

This commit is contained in:
adilallo
2026-04-29 22:27:46 -06:00
parent a31a36c926
commit a37a72c71d
58 changed files with 3153 additions and 117 deletions
@@ -0,0 +1,17 @@
"use client";
/**
* Figma: Community Rule System — "Add Custom Field/Popover" (List-item/lockup)
* https://www.figma.com/design/agv0VBLiBlcnSAaiAORgPR/Community-Rule-System?node-id=20887-175710
*/
import { memo } from "react";
import { ListItemView } from "./ListItem.view";
import type { ListItemProps } from "./ListItem.types";
const ListItem = memo<ListItemProps>((props) => {
return <ListItemView {...props} />;
});
ListItem.displayName = "ListItem";
export default ListItem;
@@ -0,0 +1,10 @@
import type { IconName } from "../../asset/icon";
export type ListItemProps = {
label: string;
leadingIcon: IconName;
onClick: () => void;
/** Bottom divider between rows — false on the final row per Figma. */
showDivider: boolean;
className?: string;
};
@@ -0,0 +1,35 @@
"use client";
import { memo } from "react";
import Icon from "../../asset/icon";
import type { ListItemProps } from "./ListItem.types";
export const ListItemView = memo(function ListItemView({
label,
leadingIcon,
onClick,
showDivider,
className = "",
}: ListItemProps) {
const dividerClass = showDivider
? "border-b border-solid border-[var(--color-border-default-tertiary)]"
: "";
return (
<button
type="button"
role="menuitem"
onClick={onClick}
className={`relative flex w-full shrink-0 cursor-pointer items-center gap-[6px] px-[4px] py-[16px] text-left hover:bg-[var(--color-surface-default-tertiary)] focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-[var(--color-border-invert-primary)] ${dividerClass} ${className}`}
>
<span className="flex size-6 shrink-0 items-center justify-center overflow-visible text-[var(--color-content-default-primary)]">
<Icon name={leadingIcon} size={24} />
</span>
<span className="min-w-0 flex-1 text-left font-inter text-[12px] font-normal leading-4 whitespace-normal text-[var(--color-content-default-primary)]">
{label}
</span>
</button>
);
});
ListItemView.displayName = "ListItemView";
+2
View File
@@ -0,0 +1,2 @@
export { default } from "./ListItem.container";
export type { ListItemProps } from "./ListItem.types";