import { Avatar, avatarIcons, defaultAvatarColors, type IconAvatar, } from "~/components/primitives/Avatar"; // Map tablerIcons Set to Avatar array with cycling colors const avatars: IconAvatar[] = Object.entries(avatarIcons).map(([iconName], index) => ({ type: "icon", name: iconName, hex: defaultAvatarColors[index % defaultAvatarColors.length].hex, // Cycle through colors })); export default function Story() { return (
{/* Left grid - size-8 */}

Size 8

{avatars.map((avatar, index) => ( ))}
{/* Right grid - size-12 */}

Size 12

{avatars.map((avatar, index) => ( ))}
); }