// Icon set — stroke icons, 1.5px. Lucide-style.
const icon = (paths, size=16) => (props) => {
const { size: s = size, stroke = 'currentColor', fill = 'none', ...rest } = props || {};
return (
);
};
const IconGrid = icon(<>
>);
const IconList = icon(<>
>);
const IconFolder = icon();
const IconShare = icon(<>
>);
const IconDroplet = icon();
const IconDownload = icon(<>
>);
const IconTrash = icon(<>
>);
const IconCheck = icon();
const IconX = icon(<>
>);
const IconStar = icon();
const IconZoom = icon(<>
>);
const IconInfo = icon(<>
>);
const IconSliders = icon(<>
>);
const IconBA = icon(<>
>);
const IconChevL = icon();
const IconChevR = icon();
const IconChevD = icon();
const IconChevU = icon();
const IconPlus = icon(<>
>);
const IconSearch = icon(<>
>);
const IconCamera = icon(<>
>);
const IconWifi = icon(<>
>);
const IconLive = icon(<>
>);
const IconLogout = icon(<>
>);
const IconCopy = icon(<>
>);
const IconEye = icon(<>
>);
const IconWand = icon(<>
>);
const IconLink = icon(<>
>);
const IconMenu = icon(<>
>);
const IconSort = icon(<>
>);
const IconFilter = icon();
const IconEdit = icon(<>
>);
const IconTag = icon(<>
>);
const IconStack = icon(<>
>);
const IconChart = icon(<>
>);
const IconBolt = icon();
const IconPick = icon();
const IconKbd = icon(<>
>);
const IconWatermark = icon(<>
©
>);
Object.assign(window, {
IconGrid, IconList, IconFolder, IconShare, IconDroplet, IconDownload, IconTrash,
IconCheck, IconX, IconStar, IconZoom, IconInfo, IconSliders, IconBA, IconChevL,
IconChevR, IconChevD, IconChevU, IconPlus, IconSearch, IconCamera, IconWifi,
IconLive, IconLogout, IconCopy, IconEye, IconWand, IconLink, IconMenu, IconSort,
IconFilter, IconEdit, IconTag, IconPick, IconKbd,
IconStack, IconChart, IconBolt, IconWatermark,
});