const baseProps = {
xmlns: 'http://www.w3.org/2000/svg',
fill: 'none',
stroke: 'currentColor',
strokeWidth: 2,
strokeLinecap: 'round',
strokeLinejoin: 'round',
};
export const UskLogo = ({ className = 'block h-10 w-10 sm:h-12 sm:w-12' }) => (
);
export const CloseIcon = ({ className = 'h-4 w-4' }) => (
);
export const MenuIcon = ({ className = 'h-4 w-4' }) => (
);
export const SupportIcon = ({ className = 'h-4 w-4 block' }) => (
);
export const SparklesIcon = ({ className = 'w-5 h-5' }) => (
);
export const StarIcon = ({ className = 'w-4 h-4 block' }) => (
);
export const FilledStarIcon = ({ className = 'w-4 h-4 block' }) => (
);
const navClass = 'h-5 w-5 block color-current';
export const HomeIcon = ({ className = navClass }) => (
);
export const GridIcon = ({ className = navClass }) => (
);
export const CurrencySwitcherIcon = ({ className = navClass }) => (
);
export const VariationSwatchesIcon = ({ className = navClass }) => (
);
export const BadgeIcon = ({ className = navClass }) => (
);
export const WoocommerceIcon = ({ className = navClass }) => (
);
export const EddIcon = ({ className = navClass }) => (
);
export const InfoIcon = ({ className = navClass }) => (
);
export const SearchIcon = ({ className = 'h-4 w-4 block' }) => (
);
export const CheckIcon = ({ className = 'h-4 w-4' }) => (
);
export const EyeIcon = ({ className = 'h-4 w-4 block' }) => (
);
export const PlayIcon = ({ className = 'h-4 w-4 block' }) => (
);
export const LinkPluginIcon = ({ className = 'h-4 w-4 block' }) => (
);
export const LockIcon = ({ className = 'h-7 w-7', stroke = 'currentColor' }) => (
);
export const UserIcon = ({ className = 'h-5 w-5' }) => (
);
export const GlobeIcon = ({ className = 'h-5 w-5' }) => (
);
export const BookIcon = ({ className = 'h-5 w-5' }) => (
);
export const MessageIcon = ({ className = 'h-5 w-5' }) => (
);
export const VideoPanelIcon = ({ className = 'h-5 w-5' }) => (
);
export const EditIcon = ({ className = 'h-5 w-5' }) => (
);
export const FacebookIcon = ({ className = 'h-5 w-5' }) => (
);
export const LiveVisitorCountIcon = ({ className = 'h-5 w-5' }) => (
);
const UpsellCrossSellIcon = () => (
);
export const adminIconMap = {
home: HomeIcon,
grid: GridIcon,
'currency-switcher': CurrencySwitcherIcon,
'variation-swatches': VariationSwatchesIcon,
settings: GridIcon,
badge: BadgeIcon,
star: StarIcon,
woocommerce: WoocommerceIcon,
edd: EddIcon,
other: GridIcon,
info: InfoIcon,
'live-visitor-count': LiveVisitorCountIcon,
'upsell-cross-sell': UpsellCrossSellIcon,
};