@nswds/app 0.1.15 → 1.6.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1,570 +1,1151 @@
1
- import { Slot } from '@radix-ui/react-slot';
2
- import { cva } from 'class-variance-authority';
3
- import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
4
- import { useEffect, useState, useCallback } from 'react';
5
- import Link3 from 'next/link';
6
- import { usePathname } from 'next/navigation';
7
- import clsx, { clsx as clsx$1 } from 'clsx';
8
- import { slugifyWithCounter } from '@sindresorhus/slugify';
9
- import { useTheme } from 'next-themes';
10
- import { twMerge } from 'tailwind-merge';
1
+ import { Slot } from '@radix-ui/react-slot'
2
+ import { cva } from 'class-variance-authority'
3
+ import clsx2, { clsx } from 'clsx'
4
+ import { twMerge } from 'tailwind-merge'
5
+ import { jsx, jsxs, Fragment } from 'react/jsx-runtime'
6
+ import { useEffect, useState, useCallback } from 'react'
7
+ import Link3 from 'next/link'
8
+ import { usePathname } from 'next/navigation'
9
+ import { slugifyWithCounter } from '@sindresorhus/slugify'
10
+ import { useTheme } from 'next-themes'
11
11
 
12
12
  // src/components/Button.tsx
13
+ function cn(...inputs) {
14
+ return twMerge(clsx(inputs))
15
+ }
16
+ function truncate(text, maxLength) {
17
+ if (text.length <= maxLength) {
18
+ return text
19
+ }
20
+ return text.slice(0, maxLength) + '...'
21
+ }
22
+ function kebabCase(str) {
23
+ return str
24
+ .replace(/([a-z])([A-Z])/g, '$1-$2')
25
+ .replace(/[\s_]+/g, '-')
26
+ .toLowerCase()
27
+ }
28
+ function camelCase(str) {
29
+ return str.toLowerCase().replace(/[^a-zA-Z0-9]+(.)/g, (_, chr) => chr.toUpperCase())
30
+ }
13
31
  var buttonVariants = cva(
14
32
  "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-all disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg:not([class*='size-'])]:size-4 shrink-0 [&_svg]:shrink-0 outline-none focus-visible:border-zinc-950 focus-visible:ring-zinc-950/50 focus-visible:ring-[3px] aria-invalid:ring-red-500/20 dark:aria-invalid:ring-red-500/40 aria-invalid:border-red-500 dark:focus-visible:border-zinc-300 dark:focus-visible:ring-zinc-300/50 dark:aria-invalid:ring-red-900/20 dark:dark:aria-invalid:ring-red-900/40 dark:aria-invalid:border-red-900",
15
33
  {
16
34
  variants: {
17
35
  variant: {
18
- default: "bg-zinc-900 text-zinc-50 shadow-xs hover:bg-zinc-900/90 dark:bg-zinc-50 dark:text-zinc-900 dark:hover:bg-zinc-50/90",
19
- destructive: "bg-red-500 text-white shadow-xs hover:bg-red-500/90 focus-visible:ring-red-500/20 dark:focus-visible:ring-red-500/40 dark:bg-red-500/60 dark:bg-red-900 dark:hover:bg-red-900/90 dark:focus-visible:ring-red-900/20 dark:dark:focus-visible:ring-red-900/40 dark:dark:bg-red-900/60",
20
- outline: "border bg-white shadow-xs hover:bg-zinc-100 hover:text-zinc-900 dark:bg-zinc-200/30 dark:border-zinc-200 dark:hover:bg-zinc-200/50 dark:bg-zinc-950 dark:hover:bg-zinc-800 dark:hover:text-zinc-50 dark:dark:bg-zinc-800/30 dark:dark:border-zinc-800 dark:dark:hover:bg-zinc-800/50",
21
- secondary: "bg-zinc-100 text-zinc-900 shadow-xs hover:bg-zinc-100/80 dark:bg-zinc-800 dark:text-zinc-50 dark:hover:bg-zinc-800/80",
22
- ghost: "hover:bg-zinc-100 hover:text-zinc-900 dark:hover:bg-zinc-100/50 dark:hover:bg-zinc-800 dark:hover:text-zinc-50 dark:dark:hover:bg-zinc-800/50",
23
- link: "text-zinc-900 underline-offset-4 hover:underline dark:text-zinc-50"
36
+ default:
37
+ 'bg-zinc-900 text-zinc-50 shadow-xs hover:bg-zinc-900/90 dark:bg-zinc-50 dark:text-zinc-900 dark:hover:bg-zinc-50/90',
38
+ destructive:
39
+ 'bg-red-500 text-white shadow-xs hover:bg-red-500/90 focus-visible:ring-red-500/20 dark:focus-visible:ring-red-500/40 dark:bg-red-500/60 dark:bg-red-900 dark:hover:bg-red-900/90 dark:focus-visible:ring-red-900/20 dark:dark:focus-visible:ring-red-900/40 dark:dark:bg-red-900/60',
40
+ outline:
41
+ 'border bg-white shadow-xs hover:bg-zinc-100 hover:text-zinc-900 dark:bg-zinc-200/30 dark:border-zinc-200 dark:hover:bg-zinc-200/50 dark:bg-zinc-950 dark:hover:bg-zinc-800 dark:hover:text-zinc-50 dark:dark:bg-zinc-800/30 dark:dark:border-zinc-800 dark:dark:hover:bg-zinc-800/50',
42
+ secondary:
43
+ 'bg-zinc-100 text-zinc-900 shadow-xs hover:bg-zinc-100/80 dark:bg-zinc-800 dark:text-zinc-50 dark:hover:bg-zinc-800/80',
44
+ ghost:
45
+ 'hover:bg-zinc-100 hover:text-zinc-900 dark:hover:bg-zinc-100/50 dark:hover:bg-zinc-800 dark:hover:text-zinc-50 dark:dark:hover:bg-zinc-800/50',
46
+ link: 'text-zinc-900 underline-offset-4 hover:underline dark:text-zinc-50',
24
47
  },
25
48
  size: {
26
- default: "h-9 px-4 py-2 has-[>svg]:px-3",
27
- sm: "h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5",
28
- lg: "h-10 rounded-md px-6 has-[>svg]:px-4",
29
- icon: "size-9"
30
- }
49
+ default: 'h-9 px-4 py-2 has-[>svg]:px-3',
50
+ sm: 'h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5',
51
+ lg: 'h-10 rounded-md px-6 has-[>svg]:px-4',
52
+ icon: 'size-9',
53
+ },
31
54
  },
32
55
  defaultVariants: {
33
- variant: "default",
34
- size: "default"
35
- }
36
- }
37
- );
38
- function Button({
39
- className,
40
- variant,
41
- size,
42
- asChild = false,
43
- ...props
44
- }) {
45
- const Comp = asChild ? Slot : "button";
46
- return /* @__PURE__ */ jsx(
47
- Comp,
48
- {
49
- "data-slot": "button",
50
- className: cn(buttonVariants({ variant, size, className })),
51
- ...props
52
- }
53
- );
56
+ variant: 'default',
57
+ size: 'default',
58
+ },
59
+ },
60
+ )
61
+ function Button({ className, variant, size, asChild = false, ...props }) {
62
+ const Comp = asChild ? Slot : 'button'
63
+ return /* @__PURE__ */ jsx(Comp, {
64
+ 'data-slot': 'button',
65
+ className: cn(buttonVariants({ variant, size, className })),
66
+ ...props,
67
+ })
54
68
  }
55
69
  function DynamicFavicon({ lightModeFavicon, darkModeFavicon }) {
56
70
  useEffect(() => {
57
71
  const updateFavicon = () => {
58
- const isDarkMode = window.matchMedia("(prefers-color-scheme: dark)").matches;
59
- const favicon = document.querySelector("link[rel='icon']");
72
+ const isDarkMode = window.matchMedia('(prefers-color-scheme: dark)').matches
73
+ const favicon = document.querySelector("link[rel='icon']")
60
74
  if (favicon) {
61
- favicon.href = isDarkMode ? darkModeFavicon : lightModeFavicon;
75
+ favicon.href = isDarkMode ? darkModeFavicon : lightModeFavicon
62
76
  } else {
63
- const newFavicon = document.createElement("link");
64
- newFavicon.rel = "icon";
65
- newFavicon.href = isDarkMode ? darkModeFavicon : lightModeFavicon;
66
- document.head.appendChild(newFavicon);
77
+ const newFavicon = document.createElement('link')
78
+ newFavicon.rel = 'icon'
79
+ newFavicon.href = isDarkMode ? darkModeFavicon : lightModeFavicon
80
+ document.head.appendChild(newFavicon)
67
81
  }
68
- };
69
- updateFavicon();
70
- const mediaQuery = window.matchMedia("(prefers-color-scheme: dark)");
71
- mediaQuery.addEventListener("change", updateFavicon);
72
- return () => mediaQuery.removeEventListener("change", updateFavicon);
73
- }, [lightModeFavicon, darkModeFavicon]);
74
- return null;
82
+ }
83
+ updateFavicon()
84
+ const mediaQuery = window.matchMedia('(prefers-color-scheme: dark)')
85
+ mediaQuery.addEventListener('change', updateFavicon)
86
+ return () => mediaQuery.removeEventListener('change', updateFavicon)
87
+ }, [lightModeFavicon, darkModeFavicon])
88
+ return null
75
89
  }
76
90
  var Icons = {
77
- logo: (props) => /* @__PURE__ */ jsxs("svg", { viewBox: "0 0 259 280", "aria-hidden": "true", ...props, children: [
78
- /* @__PURE__ */ jsx(
79
- "path",
80
- {
81
- fillRule: "evenodd",
82
- clipRule: "evenodd",
83
- d: "M24.208 270.207h-5.045v-4.277l11.15.054v13.676H26.08v-2.491c-.266.278-.553.556-.86.833-.673.585-1.49 1.07-2.433 1.434-.96.373-2.143.564-3.513.564-2.33 0-4.385-.539-6.109-1.6-1.727-1.065-3.073-2.594-4.007-4.538-.926-1.927-1.395-4.231-1.395-6.85 0-2.657.494-4.994 1.47-6.946.971-1.96 2.363-3.498 4.132-4.571 1.768-1.065 3.849-1.604 6.183-1.604 1.515 0 2.915.245 4.156.725 1.255.485 2.36 1.157 3.273 1.985a9.61 9.61 0 0 1 2.192 2.852 8.196 8.196 0 0 1 .872 3.319l.021.435h-6.038l-.062-.339a5.22 5.22 0 0 0-.814-1.981 4.562 4.562 0 0 0-1.537-1.43c-.614-.352-1.345-.531-2.175-.531-1.005 0-1.931.261-2.741.775-.806.51-1.458 1.351-1.935 2.495-.486 1.169-.731 2.74-.731 4.679 0 1.579.162 2.897.482 3.925.311 1.011.739 1.819 1.266 2.403.523.581 1.117.991 1.773 1.219a6.036 6.036 0 0 0 2.089.369c.669 0 1.27-.112 1.79-.328.523-.224.98-.514 1.354-.866.377-.356.676-.746.884-1.152.216-.41.349-.816.399-1.21l.14-1.028Zm20.878-16.312c2.354 0 4.435.534 6.179 1.587 1.752 1.061 3.13 2.59 4.086 4.546.947 1.935 1.428 4.281 1.428 6.967 0 2.648-.473 4.969-1.412 6.9-.946 1.948-2.317 3.469-4.073 4.521-1.744 1.053-3.837 1.583-6.212 1.583-2.396 0-4.502-.534-6.254-1.583-1.753-1.044-3.135-2.557-4.099-4.505-.947-1.927-1.428-4.252-1.428-6.912 0-2.673.486-5.015 1.449-6.954.968-1.956 2.355-3.486 4.12-4.551 1.764-1.061 3.853-1.599 6.216-1.599Zm0 21.185c1.117 0 2.093-.265 2.898-.787.802-.523 1.433-1.372 1.881-2.516.453-1.185.686-2.772.686-4.712 0-1.993-.237-3.618-.698-4.832-.444-1.181-1.08-2.056-1.885-2.603-.814-.543-1.782-.82-2.878-.82-1.1 0-2.072.277-2.886.82-.81.543-1.453 1.422-1.906 2.611-.47 1.223-.706 2.843-.706 4.82 0 1.944.237 3.531.702 4.712.452 1.148 1.092 1.997 1.902 2.515.81.527 1.781.792 2.89.792Zm23.764-2.93-6.162-17.829H57.09l8.654 25.251h6.195l8.73-25.251h-5.607L68.85 272.15Zm30.312-2.827H88.863v5.206l12.043.016v5.027H83.103v-25.251h17.632l-.016 4.99H88.892v5.089h10.27v4.923Zm22.482-1.529c.685-.613 1.246-1.401 1.678-2.341.419-.933.635-2.081.635-3.419 0-1.497-.311-2.835-.93-3.983-.619-1.169-1.599-2.093-2.919-2.756-1.3-.647-2.973-.974-4.975-.974h-10.738v25.243h5.759v-9.404h4.24l3.991 9.404h6.046l-4.651-10.456c.673-.357 1.3-.8 1.864-1.314Zm-3.513-5.64c0 .999-.336 1.79-1.025 2.428-.69.63-1.649.949-2.857.949h-4.095v-6.606h4.456c1.038 0 1.873.286 2.545.875.657.576.976 1.347.976 2.354Zm15.159-7.833 10.527 15.23v-15.23h5.776v25.251h-5.086l-10.98-15.86v15.86h-5.759v-25.251h5.522Zm33.949 16.461-5.29-16.461h-7.894v25.251h5.809v-16.266l5.124 16.266h4.485l5.162-16.357v16.357h5.826v-25.251h-7.878l-5.344 16.461Zm33.727-1.459h-10.298v5.206l12.046.016v5.027h-17.806v-25.251h17.636l-.021 4.99h-11.818v5.089h10.261v4.923Zm21.494.228-10.523-15.23h-5.527v25.251h5.756v-15.86l10.979 15.86h5.087v-25.251h-5.772v15.23Zm15.586-10.004h-7.388v-5.226h20.402v5.226h-7.217v20.025h-5.797v-20.025Z",
84
- className: "fill-nsw-blue-800 dark:fill-white"
85
- }
86
- ),
87
- /* @__PURE__ */ jsx(
88
- "path",
89
- {
90
- fillRule: "evenodd",
91
- clipRule: "evenodd",
92
- d: "M146.699 209.236c-1.482-2.395-3.717-4.571-6.64-6.465-2.919-1.894-6.897-3.34-11.81-4.297l-13.678-2.814c-4.132-.891-6.981-2.043-8.468-3.419-1.449-1.343-2.184-3.129-2.184-5.309 0-1.388.316-2.652.943-3.759.623-1.111 1.528-2.093 2.687-2.922 1.166-.828 2.616-1.483 4.306-1.943 1.711-.469 3.633-.705 5.714-.705 2.74 0 5.211.361 7.346 1.078 2.109.713 3.857 1.881 5.194 3.481 1.338 1.6 2.16 3.775 2.442 6.465l.038.373h16.971l-.008-.427c-.075-4.575-1.371-8.773-3.85-12.474-2.483-3.705-6.141-6.681-10.879-8.852-4.726-2.164-10.623-3.262-17.528-3.262-5.801 0-11.117 1.011-15.805 3.009-4.7 2.002-8.475 4.89-11.212 8.587-2.749 3.717-4.12 8.164-4.078 13.224.112 6.175 1.99 11.186 5.577 14.903 3.576 3.697 8.476 6.158 14.567 7.306l13.795 2.81c2.529.502 4.825 1.16 6.823 1.96 1.96.784 3.525 1.803 4.651 3.03 1.1 1.197 1.657 2.772 1.657 4.67 0 2.114-.694 3.9-2.06 5.301-1.4 1.434-3.301 2.515-5.643 3.224-2.388.721-5.058 1.086-7.936 1.086-2.807 0-5.394-.435-7.686-1.297-2.28-.85-4.194-2.093-5.689-3.693-1.491-1.591-2.513-3.585-3.04-5.918l-.075-.327H83.846l.045.46c.407 4.045 1.666 7.629 3.738 10.659 2.068 3.009 4.717 5.545 7.873 7.551 3.148 1.993 6.677 3.514 10.494 4.513a46.33 46.33 0 0 0 11.693 1.5c6.466 0 12.2-1.019 17.046-3.034 4.867-2.022 8.717-4.807 11.449-8.276 2.753-3.493 4.148-7.476 4.148-11.848 0-2.064-.232-4.36-.697-6.822-.478-2.482-1.466-4.948-2.936-7.327ZM25.937 191.763l36.916 53.312H77.87v-79.724H61.072v51.282L25.754 165.53l-.125-.179H9.19v79.724h16.748v-53.312Zm196.637 24.577 14.388-50.987h16.457l-23.587 79.724h-13.367l-14.554-50.469-14.659 50.469h-13.147l-23.533-79.724h16.511l14.384 50.979 14.389-50.979h12.167l14.551 50.987Z",
93
- className: "fill-nsw-blue-800 dark:fill-white"
94
- }
95
- ),
96
- /* @__PURE__ */ jsx(
97
- "path",
98
- {
99
- d: "M122.291 145.572c-19.75-2.424-38.934 3.904-72.69-5.263-3.447-.937-4.718 2.694-2.854 5.736 9.07 14.803 54.881 3.203 75.635 1.065.906-.095.814-1.426-.091-1.538ZM208.735 140.309c-33.756 9.167-52.941 2.839-72.691 5.263-.905.112-1 1.447-.091 1.538 20.759 2.138 66.566 13.738 75.635-1.065 1.864-3.042.594-6.673-2.853-5.736ZM59.882 119.132c-6.864-10.058-12.474-21.31-16.818-33.69-13.101 3.826-26.51 9.346-40.16 16.57a5.388 5.388 0 0 0-2.902 4.67 5.38 5.38 0 0 0 2.653 4.812c26.431 15.802 52.273 24.841 76.93 26.933-7.34-4.475-14.072-11.044-19.703-19.295ZM23.059 85.513a201.529 201.529 0 0 1 17.976-6.233c-2.126-6.896-3.87-14.12-5.249-21.658-6.827-.85-13.89-1.4-21.199-1.641-.062 0-.128-.004-.19-.004a5.391 5.391 0 0 0-4.647 2.602 5.383 5.383 0 0 0-.12 5.483c4.243 7.659 8.724 14.808 13.429 21.45ZM88.005 135.572c4.099 1.807 8.293 2.818 12.358 3.029-9.953-7.12-17.773-19.192-22.278-34.58-5.805-19.81-7.745-41.666-5.83-65.247-7.832-4.936-16.32-9.557-25.46-13.85a5.428 5.428 0 0 0-5.402.43 5.396 5.396 0 0 0-2.388 4.841c2.126 34.215 10.95 62.915 26.223 85.298 6.404 9.391 14.281 16.332 22.777 20.079ZM107.488 23.577A253.323 253.323 0 0 0 92.235 6.735c-1.063-1.078-2.433-1.65-3.85-1.65-.506 0-1.017.075-1.523.224-1.923.568-3.314 2.106-3.733 4.115-1.072 5.164-3.11 15.69-4.012 26.101 7.014 4.613 13.492 9.49 19.426 14.621 2.3-8.757 5.29-17.63 8.945-26.569ZM255.42 102.007c-13.65-7.223-27.058-12.744-40.16-16.569-4.343 12.38-9.953 23.631-16.818 33.689-5.63 8.255-12.362 14.82-19.708 19.296 24.658-2.093 50.5-11.132 76.931-26.934 1.715-1.024 2.707-2.822 2.653-4.811-.045-1.99-1.133-3.734-2.898-4.671ZM235.273 85.513c4.705-6.643 9.186-13.796 13.43-21.455.963-1.74.922-3.788-.121-5.483a5.4 5.4 0 0 0-4.837-2.598c-7.309.24-14.377.796-21.199 1.641-1.375 7.539-3.123 14.762-5.249 21.658a203.803 203.803 0 0 1 17.976 6.237ZM180.247 104.025c-4.505 15.384-12.329 27.46-22.278 34.58 4.065-.211 8.263-1.227 12.358-3.034 8.496-3.746 16.373-10.688 22.777-20.075 15.273-22.383 24.097-51.082 26.223-85.297a5.394 5.394 0 0 0-2.388-4.84 5.428 5.428 0 0 0-5.402-.432c-9.14 4.29-17.628 8.91-25.46 13.85 1.915 23.582-.029 45.434-5.83 65.248ZM179.214 35.52c-.901-10.406-2.94-20.932-4.011-26.1-.416-2.01-1.811-3.547-3.733-4.115a5.39 5.39 0 0 0-1.524-.224c-1.416 0-2.787.572-3.85 1.65-5.485 5.549-10.568 11.164-15.252 16.842 3.654 8.939 6.644 17.812 8.949 26.565 5.934-5.127 12.407-10.005 19.421-14.617ZM129.144 87.229c6.64-13.092 17.246-24.829 25.21-32.243-4.372-17.779-11.104-34.55-20.397-52.097C132.998 1.078 131.195 0 129.148 0s-3.845 1.082-4.808 2.889c-9.389 17.604-16.237 35.122-20.377 52.093 8.313 7.688 19.28 20.224 25.181 32.247Z",
100
- className: "fill-nsw-red-600 dark:fill-white"
101
- }
102
- ),
103
- /* @__PURE__ */ jsx(
104
- "path",
105
- {
106
- d: "M153.541 133.686c6.885-4.833 13.77-13.254 18.139-24.97 8.458-22.681 9.334-47.945 8.122-65.823-15.331 10.215-39.665 31.55-47.975 54.36-3.911 10.734-5.734 25.355-2.72 33.511 1.259 3.411 3.401 5.997 6.345 7.227 4.46 1.865 11.312.456 18.089-4.305ZM125.713 95.261c-2.027-4.724-4.261-9.18-7.728-14.186-9.809-14.16-23.026-26.933-39.475-38.185-.17 2.652-2.57 31.297 5.851 59.304 6.408 21.302 17.354 29.98 23.354 33.333 6.038 3.369 11.561 4.165 18.039 2.557-6.565-8.935-5.747-27.27-.041-42.823Z",
107
- className: "fill-nsw-red-600 dark:fill-white"
108
- }
109
- )
110
- ] }),
111
- github: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 0 17 17", ...props, children: /* @__PURE__ */ jsx("g", { clipPath: "url(#a)", children: /* @__PURE__ */ jsx(
112
- "path",
113
- {
114
- fillRule: "evenodd",
115
- d: "M8.977.83C4.549.83.97 4.32.97 8.636c0 3.45 2.293 6.371 5.475 7.405.397.078.543-.168.543-.375 0-.18-.013-.8-.013-1.447-2.227.465-2.691-.93-2.691-.93-.358-.905-.888-1.138-.888-1.138-.73-.478.053-.478.053-.478.808.052 1.233.801 1.233.801.715 1.19 1.869.853 2.333.646.066-.504.278-.853.504-1.046-1.777-.181-3.646-.853-3.646-3.852 0-.853.318-1.55.822-2.093-.08-.194-.358-.995.08-2.068 0 0 .676-.207 2.2.801a7.94 7.94 0 0 1 2.002-.258c.676 0 1.365.09 2.001.258 1.525-1.008 2.2-.801 2.2-.801.438 1.073.16 1.874.08 2.068.517.542.822 1.24.822 2.093 0 2.999-1.869 3.658-3.659 3.852.292.245.544.71.544 1.447 0 1.047-.013 1.887-.013 2.145 0 .207.146.453.543.375 3.182-1.034 5.475-3.955 5.475-7.405C16.983 4.319 13.39.83 8.977.83Z",
116
- clipRule: "evenodd"
117
- }
118
- ) }) }),
119
- linkedin: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 0 17 17", ...props, children: /* @__PURE__ */ jsx("g", { clipPath: "url(#a)", children: /* @__PURE__ */ jsx(
120
- "path",
121
- {
122
- fill: "currentColor",
123
- d: "M15.776.83H2.14C1.488.83.96 1.329.96 1.946v13.249c0 .617.528 1.119 1.181 1.119h13.635c.653 0 1.184-.502 1.184-1.116V1.946c0-.617-.531-1.116-1.184-1.116ZM5.706 14.025H3.333V6.633h2.375v7.392ZM4.52 5.626c-.762 0-1.378-.595-1.378-1.33 0-.735.616-1.33 1.378-1.33.76 0 1.375.595 1.375 1.33 0 .732-.615 1.33-1.375 1.33Zm10.075 8.399h-2.371v-3.593c0-.856-.016-1.96-1.235-1.96-1.234 0-1.422.935-1.422 1.9v3.653H7.197V6.633h2.275v1.01h.032c.315-.58 1.09-1.194 2.244-1.194 2.403 0 2.846 1.53 2.846 3.52v4.056Z"
124
- }
125
- ) }) }),
126
- twitter: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 0 17 17", ...props, children: /* @__PURE__ */ jsx("g", { clipPath: "url(#a)", children: /* @__PURE__ */ jsx(
127
- "path",
128
- {
129
- fill: "currentColor",
130
- d: "M13.158 2.058h2.248l-4.913 5.435 5.78 7.395h-4.525l-3.545-4.485-4.056 4.485h-2.25l5.255-5.813-5.545-7.017h4.64l3.205 4.1 3.706-4.1Zm-.79 11.527h1.246L5.57 3.293H4.233l8.135 10.292Z"
131
- }
132
- ) }) }),
133
- youtube: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 0 17 17", ...props, children: /* @__PURE__ */ jsx("g", { clipPath: "url(#a)", children: /* @__PURE__ */ jsx(
134
- "path",
135
- {
136
- fill: "currentColor",
137
- d: "M16.79 5.475s-.156-1.067-.637-1.536c-.61-.617-1.29-.62-1.603-.656-2.238-.158-5.597-.158-5.597-.158h-.006s-3.36 0-5.597.158c-.313.036-.994.039-1.603.656-.481.469-.635 1.536-.635 1.536S.95 6.73.95 7.982v1.174c0 1.252.16 2.507.16 2.507s.156 1.067.634 1.536c.61.617 1.41.596 1.765.662 1.282.118 5.441.154 5.441.154s3.363-.006 5.6-.16c.313-.036.994-.04 1.603-.656.481-.469.638-1.536.638-1.536s.159-1.252.159-2.507V7.982c0-1.252-.16-2.507-.16-2.507ZM7.298 10.58V6.228l4.322 2.184-4.322 2.168Z"
138
- }
139
- ) }) }),
140
- account_circle: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M234-276q51-39 114-61.5T480-360q69 0 132 22.5T726-276q35-41 54.5-93T800-480q0-133-93.5-226.5T480-800q-133 0-226.5 93.5T160-480q0 59 19.5 111t54.5 93Zm246-164q-59 0-99.5-40.5T340-580q0-59 40.5-99.5T480-720q59 0 99.5 40.5T620-580q0 59-40.5 99.5T480-440Zm0 360q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q53 0 100-15.5t86-44.5q-39-29-86-44.5T480-280q-53 0-100 15.5T294-220q39 29 86 44.5T480-160Zm0-360q26 0 43-17t17-43q0-26-17-43t-43-17q-26 0-43 17t-17 43q0 26 17 43t43 17Zm0-60Zm0 360Z" }) }),
141
- attach_file: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M720-330q0 104-73 177T470-80q-104 0-177-73t-73-177v-370q0-75 52.5-127.5T400-880q75 0 127.5 52.5T580-700v350q0 46-32 78t-78 32q-46 0-78-32t-32-78v-330q0-17 11.5-28.5T400-720q17 0 28.5 11.5T440-680v330q0 13 8.5 21.5T470-320q13 0 21.5-8.5T500-350v-350q-1-42-29.5-71T400-800q-42 0-71 29t-29 71v370q-1 71 49 120.5T470-160q70 0 119-49.5T640-330v-350q0-17 11.5-28.5T680-720q17 0 28.5 11.5T720-680v350Z" }) }),
142
- cancel: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "m480-424 116 116q11 11 28 11t28-11q11-11 11-28t-11-28L536-480l116-116q11-11 11-28t-11-28q-11-11-28-11t-28 11L480-536 364-652q-11-11-28-11t-28 11q-11 11-11 28t11 28l116 116-116 116q-11 11-11 28t11 28q11 11 28 11t28-11l116-116Zm0 344q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" }) }),
143
- check_circle: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "m424-408-86-86q-11-11-28-11t-28 11q-11 11-11 28t11 28l114 114q12 12 28 12t28-12l226-226q11-11 11-28t-11-28q-11-11-28-11t-28 11L424-408Zm56 328q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" }) }),
144
- check: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "m382-354 339-339q12-12 28-12t28 12q12 12 12 28.5T777-636L410-268q-12 12-28 12t-28-12L182-440q-12-12-11.5-28.5T183-497q12-12 28.5-12t28.5 12l142 143Z" }) }),
145
- chevron_down: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M480-361q-8 0-15-2.5t-13-8.5L268-556q-11-11-11-28t11-28q11-11 28-11t28 11l156 156 156-156q11-11 28-11t28 11q11 11 11 28t-11 28L508-372q-6 6-13 8.5t-15 2.5Z" }) }),
146
- chevron_left: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "m432-480 156 156q11 11 11 28t-11 28q-11 11-28 11t-28-11L348-452q-6-6-8.5-13t-2.5-15q0-8 2.5-15t8.5-13l184-184q11-11 28-11t28 11q11 11 11 28t-11 28L432-480Z" }) }),
147
- chevron_right: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M504-480 348-636q-11-11-11-28t11-28q11-11 28-11t28 11l184 184q6 6 8.5 13t2.5 15q0 8-2.5 15t-8.5 13L404-268q-11 11-28 11t-28-11q-11-11-11-28t11-28l156-156Z" }) }),
148
- chevron_up: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M480-528 324-372q-11 11-28 11t-28-11q-11-11-11-28t11-28l184-184q12-12 28-12t28 12l184 184q11 11 11 28t-11 28q-11 11-28 11t-28-11L480-528Z" }) }),
149
- close: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M480-424 284-228q-11 11-28 11t-28-11q-11-11-11-28t11-28l196-196-196-196q-11-11-11-28t11-28q11-11 28-11t28 11l196 196 196-196q11-11 28-11t28 11q11 11 11 28t-11 28L536-480l196 196q11 11 11 28t-11 28q-11 11-28 11t-28-11L480-424Z" }) }),
150
- collapse_all: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M480-264 324-108q-11 11-28 11t-28-11q-11-11-11-28t11-28l155-155q23-23 57-23t57 23l155 155q11 11 11 28t-11 28q-11 11-28 11t-28-11L480-264Zm0-432 156-156q11-11 28-11t28 11q11 11 11 28t-11 28L537-641q-23 23-57 23t-57-23L268-796q-11-11-11-28t11-28q11-11 28-11t28 11l156 156Z" }) }),
151
- computer: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M80-120q-17 0-28.5-11.5T40-160q0-17 11.5-28.5T80-200h800q17 0 28.5 11.5T920-160q0 17-11.5 28.5T880-120H80Zm80-120q-33 0-56.5-23.5T80-320v-440q0-33 23.5-56.5T160-840h640q33 0 56.5 23.5T880-760v440q0 33-23.5 56.5T800-240H160Zm0-80h640v-440H160v440Zm0 0v-440 440Z" }) }),
152
- copy: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M360-240q-33 0-56.5-23.5T280-320v-480q0-33 23.5-56.5T360-880h360q33 0 56.5 23.5T800-800v480q0 33-23.5 56.5T720-240H360Zm0-80h360v-480H360v480ZM200-80q-33 0-56.5-23.5T120-160v-520q0-17 11.5-28.5T160-720q17 0 28.5 11.5T200-680v520h400q17 0 28.5 11.5T640-120q0 17-11.5 28.5T600-80H200Zm160-240v-480 480Z" }) }),
153
- dark_mode: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M480-120q-151 0-255.5-104.5T120-480q0-138 90-239.5T440-838q13-2 23 3.5t16 14.5q6 9 6.5 21t-7.5 23q-17 26-25.5 55t-8.5 61q0 90 63 153t153 63q31 0 61.5-9t54.5-25q11-7 22.5-6.5T819-479q10 5 15.5 15t3.5 24q-14 138-117.5 229T480-120Zm0-80q88 0 158-48.5T740-375q-20 5-40 8t-40 3q-123 0-209.5-86.5T364-660q0-20 3-40t8-40q-78 32-126.5 102T200-480q0 116 82 198t198 82Zm-10-270Z" }) }),
154
- dock_to_left: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H200Zm440-80h120v-560H640v560Zm-80 0v-560H200v560h360Zm80 0h120-120Z" }) }),
155
- dock_to_right: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H200Zm120-80v-560H200v560h120Zm80 0h360v-560H400v560Zm-80 0H200h120Z" }) }),
156
- delete: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M280-120q-33 0-56.5-23.5T200-200v-520q-17 0-28.5-11.5T160-760q0-17 11.5-28.5T200-800h160q0-17 11.5-28.5T400-840h160q17 0 28.5 11.5T600-800h160q17 0 28.5 11.5T800-760q0 17-11.5 28.5T760-720v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520ZM400-280q17 0 28.5-11.5T440-320v-280q0-17-11.5-28.5T400-640q-17 0-28.5 11.5T360-600v280q0 17 11.5 28.5T400-280Zm160 0q17 0 28.5-11.5T600-320v-280q0-17-11.5-28.5T560-640q-17 0-28.5 11.5T520-600v280q0 17 11.5 28.5T560-280ZM280-720v520-520Z" }) }),
157
- desktop: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M400-200v-80H160q-33 0-56.5-23.5T80-360v-400q0-33 23.5-56.5T160-840h640q33 0 56.5 23.5T880-760v400q0 33-23.5 56.5T800-280H560v80h40q17 0 28.5 11.5T640-160q0 17-11.5 28.5T600-120H360q-17 0-28.5-11.5T320-160q0-17 11.5-28.5T360-200h40ZM160-360h640v-400H160v400Zm0 0v-400 400Z" }) }),
158
- display_settings: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M300-410v20q0 13 8.5 21.5T330-360q13 0 21.5-8.5T360-390v-100q0-13-8.5-21.5T330-520q-13 0-21.5 8.5T300-490v20h-30q-13 0-21.5 8.5T240-440q0 13 8.5 21.5T270-410h30Zm130 0h260q13 0 21.5-8.5T720-440q0-13-8.5-21.5T690-470H430q-13 0-21.5 8.5T400-440q0 13 8.5 21.5T430-410Zm230-160h30q13 0 21.5-8.5T720-600q0-13-8.5-21.5T690-630h-30v-20q0-13-8.5-21.5T630-680q-13 0-21.5 8.5T600-650v100q0 13 8.5 21.5T630-520q13 0 21.5-8.5T660-550v-20Zm-390 0h260q13 0 21.5-8.5T560-600q0-13-8.5-21.5T530-630H270q-13 0-21.5 8.5T240-600q0 13 8.5 21.5T270-570ZM160-200q-33 0-56.5-23.5T80-280v-480q0-33 23.5-56.5T160-840h640q33 0 56.5 23.5T880-760v480q0 33-23.5 56.5T800-200H640v40q0 17-11.5 28.5T600-120H360q-17 0-28.5-11.5T320-160v-40H160Zm0-80h640v-480H160v480Zm0 0v-480 480Z" }) }),
159
- double_arrow_left: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "m313-480 155 156q11 11 11.5 27.5T468-268q-11 11-28 11t-28-11L228-452q-6-6-8.5-13t-2.5-15q0-8 2.5-15t8.5-13l184-184q11-11 27.5-11.5T468-692q11 11 11 28t-11 28L313-480Zm264 0 155 156q11 11 11.5 27.5T732-268q-11 11-28 11t-28-11L492-452q-6-6-8.5-13t-2.5-15q0-8 2.5-15t8.5-13l184-184q11-11 27.5-11.5T732-692q11 11 11 28t-11 28L577-480Z" }) }),
160
- double_arrow_right: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M383-480 228-636q-11-11-11.5-27.5T228-692q11-11 28-11t28 11l184 184q6 6 8.5 13t2.5 15q0 8-2.5 15t-8.5 13L284-268q-11 11-27.5 11.5T228-268q-11-11-11-28t11-28l155-156Zm264 0L492-636q-11-11-11.5-27.5T492-692q11-11 28-11t28 11l184 184q6 6 8.5 13t2.5 15q0 8-2.5 15t-8.5 13L548-268q-11 11-27.5 11.5T492-268q-11-11-11-28t11-28l155-156Z" }) }),
161
- download: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M480-337q-8 0-15-2.5t-13-8.5L308-492q-12-12-11.5-28t11.5-28q12-12 28.5-12.5T365-549l75 75v-286q0-17 11.5-28.5T480-800q17 0 28.5 11.5T520-760v286l75-75q12-12 28.5-11.5T652-548q11 12 11.5 28T652-492L508-348q-6 6-13 8.5t-15 2.5ZM240-160q-33 0-56.5-23.5T160-240v-80q0-17 11.5-28.5T200-360q17 0 28.5 11.5T240-320v80h480v-80q0-17 11.5-28.5T760-360q17 0 28.5 11.5T800-320v80q0 33-23.5 56.5T720-160H240Z" }) }),
162
- east: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M727-440H120q-17 0-28.5-11.5T80-480q0-17 11.5-28.5T120-520h607L572-676q-11-11-11.5-27.5T572-732q11-11 28-11t28 11l224 224q6 6 8.5 13t2.5 15q0 8-2.5 15t-8.5 13L628-228q-11 11-27.5 11T572-228q-12-12-12-28.5t12-28.5l155-155Z" }) }),
163
- error: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M480-280q17 0 28.5-11.5T520-320q0-17-11.5-28.5T480-360q-17 0-28.5 11.5T440-320q0 17 11.5 28.5T480-280Zm0-160q17 0 28.5-11.5T520-480v-160q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640v160q0 17 11.5 28.5T480-440Zm0 360q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" }) }),
164
- exclamation: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M480-400q-17 0-28.5-11.5T440-440v-280q0-17 11.5-28.5T480-760q17 0 28.5 11.5T520-720v280q0 17-11.5 28.5T480-400Zm0 200q-17 0-28.5-11.5T440-240q0-17 11.5-28.5T480-280q17 0 28.5 11.5T520-240q0 17-11.5 28.5T480-200Z" }) }),
165
- help: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M478-240q21 0 35.5-14.5T528-290q0-21-14.5-35.5T478-340q-21 0-35.5 14.5T428-290q0 21 14.5 35.5T478-240Zm2 160q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Zm4-172q25 0 43.5 16t18.5 40q0 22-13.5 39T502-525q-23 20-40.5 44T444-427q0 14 10.5 23.5T479-394q15 0 25.5-10t13.5-25q4-21 18-37.5t30-31.5q23-22 39.5-48t16.5-58q0-51-41.5-83.5T484-720q-38 0-72.5 16T359-655q-7 12-4.5 25.5T368-609q14 8 29 5t25-17q11-15 27.5-23t34.5-8Z" }) }),
166
- info: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M480-280q17 0 28.5-11.5T520-320v-160q0-17-11.5-28.5T480-520q-17 0-28.5 11.5T440-480v160q0 17 11.5 28.5T480-280Zm0-320q17 0 28.5-11.5T520-640q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640q0 17 11.5 28.5T480-600Zm0 520q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z" }) }),
167
- light_mode: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M480-360q50 0 85-35t35-85q0-50-35-85t-85-35q-50 0-85 35t-35 85q0 50 35 85t85 35Zm0 80q-83 0-141.5-58.5T280-480q0-83 58.5-141.5T480-680q83 0 141.5 58.5T680-480q0 83-58.5 141.5T480-280ZM80-440q-17 0-28.5-11.5T40-480q0-17 11.5-28.5T80-520h80q17 0 28.5 11.5T200-480q0 17-11.5 28.5T160-440H80Zm720 0q-17 0-28.5-11.5T760-480q0-17 11.5-28.5T800-520h80q17 0 28.5 11.5T920-480q0 17-11.5 28.5T880-440h-80ZM480-760q-17 0-28.5-11.5T440-800v-80q0-17 11.5-28.5T480-920q17 0 28.5 11.5T520-880v80q0 17-11.5 28.5T480-760Zm0 720q-17 0-28.5-11.5T440-80v-80q0-17 11.5-28.5T480-200q17 0 28.5 11.5T520-160v80q0 17-11.5 28.5T480-40ZM226-678l-43-42q-12-11-11.5-28t11.5-29q12-12 29-12t28 12l42 43q11 12 11 28t-11 28q-11 12-27.5 11.5T226-678Zm494 495-42-43q-11-12-11-28.5t11-27.5q11-12 27.5-11.5T734-282l43 42q12 11 11.5 28T777-183q-12 12-29 12t-28-12Zm-42-495q-12-11-11.5-27.5T678-734l42-43q11-12 28-11.5t29 11.5q12 12 12 29t-12 28l-43 42q-12 11-28 11t-28-11ZM183-183q-12-12-12-29t12-28l43-42q12-11 28.5-11t27.5 11q12 11 11.5 27.5T282-226l-42 43q-11 12-28 11.5T183-183Zm297-297Z" }) }),
168
- link: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M280-280q-83 0-141.5-58.5T80-480q0-83 58.5-141.5T280-680h120q17 0 28.5 11.5T440-640q0 17-11.5 28.5T400-600H280q-50 0-85 35t-35 85q0 50 35 85t85 35h120q17 0 28.5 11.5T440-320q0 17-11.5 28.5T400-280H280Zm80-160q-17 0-28.5-11.5T320-480q0-17 11.5-28.5T360-520h240q17 0 28.5 11.5T640-480q0 17-11.5 28.5T600-440H360Zm200 160q-17 0-28.5-11.5T520-320q0-17 11.5-28.5T560-360h120q50 0 85-35t35-85q0-50-35-85t-85-35H560q-17 0-28.5-11.5T520-640q0-17 11.5-28.5T560-680h120q83 0 141.5 58.5T880-480q0 83-58.5 141.5T680-280H560Z" }) }),
169
- login: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M520-120q-17 0-28.5-11.5T480-160q0-17 11.5-28.5T520-200h240v-560H520q-17 0-28.5-11.5T480-800q0-17 11.5-28.5T520-840h240q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H520Zm-73-320H160q-17 0-28.5-11.5T120-480q0-17 11.5-28.5T160-520h287l-75-75q-11-11-11-27t11-28q11-12 28-12.5t29 11.5l143 143q12 12 12 28t-12 28L429-309q-12 12-28.5 11.5T372-310q-11-12-10.5-28.5T373-366l74-74Z" }) }),
170
- logout: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h240q17 0 28.5 11.5T480-800q0 17-11.5 28.5T440-760H200v560h240q17 0 28.5 11.5T480-160q0 17-11.5 28.5T440-120H200Zm487-320H400q-17 0-28.5-11.5T360-480q0-17 11.5-28.5T400-520h287l-75-75q-11-11-11-27t11-28q11-12 28-12.5t29 11.5l143 143q12 12 12 28t-12 28L669-309q-12 12-28.5 11.5T612-310q-11-12-10.5-28.5T613-366l74-74Z" }) }),
171
- menu: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M160-240q-17 0-28.5-11.5T120-280q0-17 11.5-28.5T160-320h640q17 0 28.5 11.5T840-280q0 17-11.5 28.5T800-240H160Zm0-200q-17 0-28.5-11.5T120-480q0-17 11.5-28.5T160-520h640q17 0 28.5 11.5T840-480q0 17-11.5 28.5T800-440H160Zm0-200q-17 0-28.5-11.5T120-680q0-17 11.5-28.5T160-720h640q17 0 28.5 11.5T840-680q0 17-11.5 28.5T800-640H160Z" }) }),
172
- more_horiz: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M240-400q-33 0-56.5-23.5T160-480q0-33 23.5-56.5T240-560q33 0 56.5 23.5T320-480q0 33-23.5 56.5T240-400Zm240 0q-33 0-56.5-23.5T400-480q0-33 23.5-56.5T480-560q33 0 56.5 23.5T560-480q0 33-23.5 56.5T480-400Zm240 0q-33 0-56.5-23.5T640-480q0-33 23.5-56.5T720-560q33 0 56.5 23.5T800-480q0 33-23.5 56.5T720-400Z" }) }),
173
- more_vert: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M480-160q-33 0-56.5-23.5T400-240q0-33 23.5-56.5T480-320q33 0 56.5 23.5T560-240q0 33-23.5 56.5T480-160Zm0-240q-33 0-56.5-23.5T400-480q0-33 23.5-56.5T480-560q33 0 56.5 23.5T560-480q0 33-23.5 56.5T480-400Zm0-240q-33 0-56.5-23.5T400-720q0-33 23.5-56.5T480-800q33 0 56.5 23.5T560-720q0 33-23.5 56.5T480-640Z" }) }),
174
- north: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M480-80q-17 0-28.5-11.5T440-120v-607L284-572q-11 11-27.5 11.5T228-572q-11-11-11-28t11-28l224-224q6-6 13-8.5t15-2.5q8 0 15 2.5t13 8.5l224 224q11 11 11 27.5T732-572q-12 12-28.5 12T675-572L520-727v607q0 17-11.5 28.5T480-80Z" }) }),
175
- open_in_new: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h240q17 0 28.5 11.5T480-800q0 17-11.5 28.5T440-760H200v560h560v-240q0-17 11.5-28.5T800-480q17 0 28.5 11.5T840-440v240q0 33-23.5 56.5T760-120H200Zm560-584L416-360q-11 11-28 11t-28-11q-11-11-11-28t11-28l344-344H600q-17 0-28.5-11.5T560-800q0-17 11.5-28.5T600-840h200q17 0 28.5 11.5T840-800v200q0 17-11.5 28.5T800-560q-17 0-28.5-11.5T760-600v-104Z" }) }),
176
- print: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M320-120q-33 0-56.5-23.5T240-200v-80h-80q-33 0-56.5-23.5T80-360v-160q0-51 35-85.5t85-34.5h560q51 0 85.5 34.5T880-520v160q0 33-23.5 56.5T800-280h-80v80q0 33-23.5 56.5T640-120H320ZM160-360h80q0-33 23.5-56.5T320-440h320q33 0 56.5 23.5T720-360h80v-160q0-17-11.5-28.5T760-560H200q-17 0-28.5 11.5T160-520v160Zm480-280v-120H320v120h-80v-120q0-33 23.5-56.5T320-840h320q33 0 56.5 23.5T720-760v120h-80Zm80 180q17 0 28.5-11.5T760-500q0-17-11.5-28.5T720-540q-17 0-28.5 11.5T680-500q0 17 11.5 28.5T720-460Zm-80 260v-160H320v160h320ZM160-560h640-640Z" }) }),
177
- progress_activity: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M480-80q-82 0-155-31.5t-127.5-86Q143-252 111.5-325T80-480q0-83 31.5-155.5t86-127Q252-817 325-848.5T480-880q17 0 28.5 11.5T520-840q0 17-11.5 28.5T480-800q-133 0-226.5 93.5T160-480q0 133 93.5 226.5T480-160q133 0 226.5-93.5T800-480q0-17 11.5-28.5T840-520q17 0 28.5 11.5T880-480q0 82-31.5 155t-86 127.5q-54.5 54.5-127 86T480-80Z" }) }),
178
- remove: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M240-440q-17 0-28.5-11.5T200-480q0-17 11.5-28.5T240-520h480q17 0 28.5 11.5T760-480q0 17-11.5 28.5T720-440H240Z" }) }),
179
- search: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M380-320q-109 0-184.5-75.5T120-580q0-109 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l224 224q11 11 11 28t-11 28q-11 11-28 11t-28-11L532-372q-30 24-69 38t-83 14Zm0-80q75 0 127.5-52.5T560-580q0-75-52.5-127.5T380-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Z" }) }),
180
- settings_brightness: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "m420-320 46 46q6 6 14 6t14-6l46-46h80q8 0 14-6t6-14v-80l46-46q6-6 6-14t-6-14l-46-46v-80q0-8-6-14t-14-6h-80l-46-46q-6-6-14-6t-14 6l-46 46h-80q-8 0-14 6t-6 14v80l-46 46q-6 6-6 14t6 14l46 46v80q0 8 6 14t14 6h80Zm60-40v-240q50 0 85 35t35 85q0 50-35 85t-85 35ZM160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h640q33 0 56.5 23.5T880-720v480q0 33-23.5 56.5T800-160H160Zm0-80h640v-480H160v480Zm0 0v-480 480Z" }) }),
181
- share: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M680-80q-50 0-85-35t-35-85q0-6 3-28L282-392q-16 15-37 23.5t-45 8.5q-50 0-85-35t-35-85q0-50 35-85t85-35q24 0 45 8.5t37 23.5l281-164q-2-7-2.5-13.5T560-760q0-50 35-85t85-35q50 0 85 35t35 85q0 50-35 85t-85 35q-24 0-45-8.5T598-672L317-508q2 7 2.5 13.5t.5 14.5q0 8-.5 14.5T317-452l281 164q16-15 37-23.5t45-8.5q50 0 85 35t35 85q0 50-35 85t-85 35Zm0-80q17 0 28.5-11.5T720-200q0-17-11.5-28.5T680-240q-17 0-28.5 11.5T640-200q0 17 11.5 28.5T680-160ZM200-440q17 0 28.5-11.5T240-480q0-17-11.5-28.5T200-520q-17 0-28.5 11.5T160-480q0 17 11.5 28.5T200-440Zm480-280q17 0 28.5-11.5T720-760q0-17-11.5-28.5T680-800q-17 0-28.5 11.5T640-760q0 17 11.5 28.5T680-720Zm0 520ZM200-480Zm480-280Z" }) }),
182
- side_navigation: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H200Zm280-80h280v-560H480v560Z" }) }),
183
- south: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M480-97q-8 0-15-2.5t-13-8.5L228-332q-11-11-11-28t11-28q12-12 28.5-11.5T284-388l156 155v-607q0-17 11.5-28.5T480-880q17 0 28.5 11.5T520-840v607l155-155q12-12 28.5-12t28.5 12q11 12 11 28.5T732-332L508-108q-6 6-13 8.5T480-97Z" }) }),
184
- unfold_less: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "m480-284-96 96q-11 11-28 11t-28-11q-11-11-11-28t11-28l124-124q6-6 13-8.5t15-2.5q8 0 15 2.5t13 8.5l124 124q11 11 11 28t-11 28q-11 11-28 11t-28-11l-96-96Zm0-392 96-96q11-11 28-11t28 11q11 11 11 28t-11 28L508-592q-6 6-13 8.5t-15 2.5q-8 0-15-2.5t-13-8.5L328-716q-11-11-11-28t11-28q11-11 28-11t28 11l96 96Z" }) }),
185
- unfold_more: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "m480-236 93-93q12-12 29-12t29 12q12 12 12 29t-12 29L508-148q-6 6-13 8.5t-15 2.5q-8 0-15-2.5t-13-8.5L329-271q-12-12-12-29t12-29q12-12 29-12t29 12l93 93Zm0-484-93 93q-12 12-29 12t-29-12q-12-12-12-29t12-29l123-123q6-6 13-8.5t15-2.5q8 0 15 2.5t13 8.5l123 123q12 12 12 29t-12 29q-12 12-29 12t-29-12l-93-93Z" }) }),
186
- upload: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M240-160q-33 0-56.5-23.5T160-240v-80q0-17 11.5-28.5T200-360q17 0 28.5 11.5T240-320v80h480v-80q0-17 11.5-28.5T760-360q17 0 28.5 11.5T800-320v80q0 33-23.5 56.5T720-160H240Zm200-486-75 75q-12 12-28.5 11.5T308-572q-11-12-11.5-28t11.5-28l144-144q6-6 13-8.5t15-2.5q8 0 15 2.5t13 8.5l144 144q12 12 11.5 28T652-572q-12 12-28.5 12.5T595-571l-75-75v286q0 17-11.5 28.5T480-320q-17 0-28.5-11.5T440-360v-286Z" }) }),
187
- west: (props) => /* @__PURE__ */ jsx("svg", { fill: "currentColor", viewBox: "0 -960 960 960", ...props, children: /* @__PURE__ */ jsx("path", { d: "M233-440h607q17 0 28.5-11.5T880-480q0-17-11.5-28.5T840-520H233l155-156q11-11 11.5-27.5T388-732q-11-11-28-11t-28 11L108-508q-6 6-8.5 13T97-480q0 8 2.5 15t8.5 13l224 224q11 11 27.5 11t28.5-11q12-12 12-28.5T388-285L233-440Z" }) })
188
- };
189
- function SocialLink({
190
- href,
191
- icon: Icon,
192
- children
193
- }) {
194
- return /* @__PURE__ */ jsxs(Link3, { href, className: "group", children: [
195
- /* @__PURE__ */ jsx("span", { className: "sr-only", children }),
196
- /* @__PURE__ */ jsx(Icon, { className: "h-5 w-5 fill-zinc-700 transition group-hover:fill-zinc-900 dark:group-hover:fill-zinc-500" })
197
- ] });
91
+ logo: (props) =>
92
+ /* @__PURE__ */ jsxs('svg', {
93
+ viewBox: '0 0 259 280',
94
+ 'aria-hidden': 'true',
95
+ ...props,
96
+ children: [
97
+ /* @__PURE__ */ jsx('path', {
98
+ fillRule: 'evenodd',
99
+ clipRule: 'evenodd',
100
+ d: 'M24.208 270.207h-5.045v-4.277l11.15.054v13.676H26.08v-2.491c-.266.278-.553.556-.86.833-.673.585-1.49 1.07-2.433 1.434-.96.373-2.143.564-3.513.564-2.33 0-4.385-.539-6.109-1.6-1.727-1.065-3.073-2.594-4.007-4.538-.926-1.927-1.395-4.231-1.395-6.85 0-2.657.494-4.994 1.47-6.946.971-1.96 2.363-3.498 4.132-4.571 1.768-1.065 3.849-1.604 6.183-1.604 1.515 0 2.915.245 4.156.725 1.255.485 2.36 1.157 3.273 1.985a9.61 9.61 0 0 1 2.192 2.852 8.196 8.196 0 0 1 .872 3.319l.021.435h-6.038l-.062-.339a5.22 5.22 0 0 0-.814-1.981 4.562 4.562 0 0 0-1.537-1.43c-.614-.352-1.345-.531-2.175-.531-1.005 0-1.931.261-2.741.775-.806.51-1.458 1.351-1.935 2.495-.486 1.169-.731 2.74-.731 4.679 0 1.579.162 2.897.482 3.925.311 1.011.739 1.819 1.266 2.403.523.581 1.117.991 1.773 1.219a6.036 6.036 0 0 0 2.089.369c.669 0 1.27-.112 1.79-.328.523-.224.98-.514 1.354-.866.377-.356.676-.746.884-1.152.216-.41.349-.816.399-1.21l.14-1.028Zm20.878-16.312c2.354 0 4.435.534 6.179 1.587 1.752 1.061 3.13 2.59 4.086 4.546.947 1.935 1.428 4.281 1.428 6.967 0 2.648-.473 4.969-1.412 6.9-.946 1.948-2.317 3.469-4.073 4.521-1.744 1.053-3.837 1.583-6.212 1.583-2.396 0-4.502-.534-6.254-1.583-1.753-1.044-3.135-2.557-4.099-4.505-.947-1.927-1.428-4.252-1.428-6.912 0-2.673.486-5.015 1.449-6.954.968-1.956 2.355-3.486 4.12-4.551 1.764-1.061 3.853-1.599 6.216-1.599Zm0 21.185c1.117 0 2.093-.265 2.898-.787.802-.523 1.433-1.372 1.881-2.516.453-1.185.686-2.772.686-4.712 0-1.993-.237-3.618-.698-4.832-.444-1.181-1.08-2.056-1.885-2.603-.814-.543-1.782-.82-2.878-.82-1.1 0-2.072.277-2.886.82-.81.543-1.453 1.422-1.906 2.611-.47 1.223-.706 2.843-.706 4.82 0 1.944.237 3.531.702 4.712.452 1.148 1.092 1.997 1.902 2.515.81.527 1.781.792 2.89.792Zm23.764-2.93-6.162-17.829H57.09l8.654 25.251h6.195l8.73-25.251h-5.607L68.85 272.15Zm30.312-2.827H88.863v5.206l12.043.016v5.027H83.103v-25.251h17.632l-.016 4.99H88.892v5.089h10.27v4.923Zm22.482-1.529c.685-.613 1.246-1.401 1.678-2.341.419-.933.635-2.081.635-3.419 0-1.497-.311-2.835-.93-3.983-.619-1.169-1.599-2.093-2.919-2.756-1.3-.647-2.973-.974-4.975-.974h-10.738v25.243h5.759v-9.404h4.24l3.991 9.404h6.046l-4.651-10.456c.673-.357 1.3-.8 1.864-1.314Zm-3.513-5.64c0 .999-.336 1.79-1.025 2.428-.69.63-1.649.949-2.857.949h-4.095v-6.606h4.456c1.038 0 1.873.286 2.545.875.657.576.976 1.347.976 2.354Zm15.159-7.833 10.527 15.23v-15.23h5.776v25.251h-5.086l-10.98-15.86v15.86h-5.759v-25.251h5.522Zm33.949 16.461-5.29-16.461h-7.894v25.251h5.809v-16.266l5.124 16.266h4.485l5.162-16.357v16.357h5.826v-25.251h-7.878l-5.344 16.461Zm33.727-1.459h-10.298v5.206l12.046.016v5.027h-17.806v-25.251h17.636l-.021 4.99h-11.818v5.089h10.261v4.923Zm21.494.228-10.523-15.23h-5.527v25.251h5.756v-15.86l10.979 15.86h5.087v-25.251h-5.772v15.23Zm15.586-10.004h-7.388v-5.226h20.402v5.226h-7.217v20.025h-5.797v-20.025Z',
101
+ className: 'fill-nsw-blue-800 dark:fill-white',
102
+ }),
103
+ /* @__PURE__ */ jsx('path', {
104
+ fillRule: 'evenodd',
105
+ clipRule: 'evenodd',
106
+ d: 'M146.699 209.236c-1.482-2.395-3.717-4.571-6.64-6.465-2.919-1.894-6.897-3.34-11.81-4.297l-13.678-2.814c-4.132-.891-6.981-2.043-8.468-3.419-1.449-1.343-2.184-3.129-2.184-5.309 0-1.388.316-2.652.943-3.759.623-1.111 1.528-2.093 2.687-2.922 1.166-.828 2.616-1.483 4.306-1.943 1.711-.469 3.633-.705 5.714-.705 2.74 0 5.211.361 7.346 1.078 2.109.713 3.857 1.881 5.194 3.481 1.338 1.6 2.16 3.775 2.442 6.465l.038.373h16.971l-.008-.427c-.075-4.575-1.371-8.773-3.85-12.474-2.483-3.705-6.141-6.681-10.879-8.852-4.726-2.164-10.623-3.262-17.528-3.262-5.801 0-11.117 1.011-15.805 3.009-4.7 2.002-8.475 4.89-11.212 8.587-2.749 3.717-4.12 8.164-4.078 13.224.112 6.175 1.99 11.186 5.577 14.903 3.576 3.697 8.476 6.158 14.567 7.306l13.795 2.81c2.529.502 4.825 1.16 6.823 1.96 1.96.784 3.525 1.803 4.651 3.03 1.1 1.197 1.657 2.772 1.657 4.67 0 2.114-.694 3.9-2.06 5.301-1.4 1.434-3.301 2.515-5.643 3.224-2.388.721-5.058 1.086-7.936 1.086-2.807 0-5.394-.435-7.686-1.297-2.28-.85-4.194-2.093-5.689-3.693-1.491-1.591-2.513-3.585-3.04-5.918l-.075-.327H83.846l.045.46c.407 4.045 1.666 7.629 3.738 10.659 2.068 3.009 4.717 5.545 7.873 7.551 3.148 1.993 6.677 3.514 10.494 4.513a46.33 46.33 0 0 0 11.693 1.5c6.466 0 12.2-1.019 17.046-3.034 4.867-2.022 8.717-4.807 11.449-8.276 2.753-3.493 4.148-7.476 4.148-11.848 0-2.064-.232-4.36-.697-6.822-.478-2.482-1.466-4.948-2.936-7.327ZM25.937 191.763l36.916 53.312H77.87v-79.724H61.072v51.282L25.754 165.53l-.125-.179H9.19v79.724h16.748v-53.312Zm196.637 24.577 14.388-50.987h16.457l-23.587 79.724h-13.367l-14.554-50.469-14.659 50.469h-13.147l-23.533-79.724h16.511l14.384 50.979 14.389-50.979h12.167l14.551 50.987Z',
107
+ className: 'fill-nsw-blue-800 dark:fill-white',
108
+ }),
109
+ /* @__PURE__ */ jsx('path', {
110
+ d: 'M122.291 145.572c-19.75-2.424-38.934 3.904-72.69-5.263-3.447-.937-4.718 2.694-2.854 5.736 9.07 14.803 54.881 3.203 75.635 1.065.906-.095.814-1.426-.091-1.538ZM208.735 140.309c-33.756 9.167-52.941 2.839-72.691 5.263-.905.112-1 1.447-.091 1.538 20.759 2.138 66.566 13.738 75.635-1.065 1.864-3.042.594-6.673-2.853-5.736ZM59.882 119.132c-6.864-10.058-12.474-21.31-16.818-33.69-13.101 3.826-26.51 9.346-40.16 16.57a5.388 5.388 0 0 0-2.902 4.67 5.38 5.38 0 0 0 2.653 4.812c26.431 15.802 52.273 24.841 76.93 26.933-7.34-4.475-14.072-11.044-19.703-19.295ZM23.059 85.513a201.529 201.529 0 0 1 17.976-6.233c-2.126-6.896-3.87-14.12-5.249-21.658-6.827-.85-13.89-1.4-21.199-1.641-.062 0-.128-.004-.19-.004a5.391 5.391 0 0 0-4.647 2.602 5.383 5.383 0 0 0-.12 5.483c4.243 7.659 8.724 14.808 13.429 21.45ZM88.005 135.572c4.099 1.807 8.293 2.818 12.358 3.029-9.953-7.12-17.773-19.192-22.278-34.58-5.805-19.81-7.745-41.666-5.83-65.247-7.832-4.936-16.32-9.557-25.46-13.85a5.428 5.428 0 0 0-5.402.43 5.396 5.396 0 0 0-2.388 4.841c2.126 34.215 10.95 62.915 26.223 85.298 6.404 9.391 14.281 16.332 22.777 20.079ZM107.488 23.577A253.323 253.323 0 0 0 92.235 6.735c-1.063-1.078-2.433-1.65-3.85-1.65-.506 0-1.017.075-1.523.224-1.923.568-3.314 2.106-3.733 4.115-1.072 5.164-3.11 15.69-4.012 26.101 7.014 4.613 13.492 9.49 19.426 14.621 2.3-8.757 5.29-17.63 8.945-26.569ZM255.42 102.007c-13.65-7.223-27.058-12.744-40.16-16.569-4.343 12.38-9.953 23.631-16.818 33.689-5.63 8.255-12.362 14.82-19.708 19.296 24.658-2.093 50.5-11.132 76.931-26.934 1.715-1.024 2.707-2.822 2.653-4.811-.045-1.99-1.133-3.734-2.898-4.671ZM235.273 85.513c4.705-6.643 9.186-13.796 13.43-21.455.963-1.74.922-3.788-.121-5.483a5.4 5.4 0 0 0-4.837-2.598c-7.309.24-14.377.796-21.199 1.641-1.375 7.539-3.123 14.762-5.249 21.658a203.803 203.803 0 0 1 17.976 6.237ZM180.247 104.025c-4.505 15.384-12.329 27.46-22.278 34.58 4.065-.211 8.263-1.227 12.358-3.034 8.496-3.746 16.373-10.688 22.777-20.075 15.273-22.383 24.097-51.082 26.223-85.297a5.394 5.394 0 0 0-2.388-4.84 5.428 5.428 0 0 0-5.402-.432c-9.14 4.29-17.628 8.91-25.46 13.85 1.915 23.582-.029 45.434-5.83 65.248ZM179.214 35.52c-.901-10.406-2.94-20.932-4.011-26.1-.416-2.01-1.811-3.547-3.733-4.115a5.39 5.39 0 0 0-1.524-.224c-1.416 0-2.787.572-3.85 1.65-5.485 5.549-10.568 11.164-15.252 16.842 3.654 8.939 6.644 17.812 8.949 26.565 5.934-5.127 12.407-10.005 19.421-14.617ZM129.144 87.229c6.64-13.092 17.246-24.829 25.21-32.243-4.372-17.779-11.104-34.55-20.397-52.097C132.998 1.078 131.195 0 129.148 0s-3.845 1.082-4.808 2.889c-9.389 17.604-16.237 35.122-20.377 52.093 8.313 7.688 19.28 20.224 25.181 32.247Z',
111
+ className: 'fill-nsw-red-600 dark:fill-white',
112
+ }),
113
+ /* @__PURE__ */ jsx('path', {
114
+ d: 'M153.541 133.686c6.885-4.833 13.77-13.254 18.139-24.97 8.458-22.681 9.334-47.945 8.122-65.823-15.331 10.215-39.665 31.55-47.975 54.36-3.911 10.734-5.734 25.355-2.72 33.511 1.259 3.411 3.401 5.997 6.345 7.227 4.46 1.865 11.312.456 18.089-4.305ZM125.713 95.261c-2.027-4.724-4.261-9.18-7.728-14.186-9.809-14.16-23.026-26.933-39.475-38.185-.17 2.652-2.57 31.297 5.851 59.304 6.408 21.302 17.354 29.98 23.354 33.333 6.038 3.369 11.561 4.165 18.039 2.557-6.565-8.935-5.747-27.27-.041-42.823Z',
115
+ className: 'fill-nsw-red-600 dark:fill-white',
116
+ }),
117
+ ],
118
+ }),
119
+ github: (props) =>
120
+ /* @__PURE__ */ jsx('svg', {
121
+ fill: 'currentColor',
122
+ viewBox: '0 0 17 17',
123
+ ...props,
124
+ children: /* @__PURE__ */ jsx('g', {
125
+ clipPath: 'url(#a)',
126
+ children: /* @__PURE__ */ jsx('path', {
127
+ fillRule: 'evenodd',
128
+ d: 'M8.977.83C4.549.83.97 4.32.97 8.636c0 3.45 2.293 6.371 5.475 7.405.397.078.543-.168.543-.375 0-.18-.013-.8-.013-1.447-2.227.465-2.691-.93-2.691-.93-.358-.905-.888-1.138-.888-1.138-.73-.478.053-.478.053-.478.808.052 1.233.801 1.233.801.715 1.19 1.869.853 2.333.646.066-.504.278-.853.504-1.046-1.777-.181-3.646-.853-3.646-3.852 0-.853.318-1.55.822-2.093-.08-.194-.358-.995.08-2.068 0 0 .676-.207 2.2.801a7.94 7.94 0 0 1 2.002-.258c.676 0 1.365.09 2.001.258 1.525-1.008 2.2-.801 2.2-.801.438 1.073.16 1.874.08 2.068.517.542.822 1.24.822 2.093 0 2.999-1.869 3.658-3.659 3.852.292.245.544.71.544 1.447 0 1.047-.013 1.887-.013 2.145 0 .207.146.453.543.375 3.182-1.034 5.475-3.955 5.475-7.405C16.983 4.319 13.39.83 8.977.83Z',
129
+ clipRule: 'evenodd',
130
+ }),
131
+ }),
132
+ }),
133
+ linkedin: (props) =>
134
+ /* @__PURE__ */ jsx('svg', {
135
+ fill: 'currentColor',
136
+ viewBox: '0 0 17 17',
137
+ ...props,
138
+ children: /* @__PURE__ */ jsx('g', {
139
+ clipPath: 'url(#a)',
140
+ children: /* @__PURE__ */ jsx('path', {
141
+ fill: 'currentColor',
142
+ d: 'M15.776.83H2.14C1.488.83.96 1.329.96 1.946v13.249c0 .617.528 1.119 1.181 1.119h13.635c.653 0 1.184-.502 1.184-1.116V1.946c0-.617-.531-1.116-1.184-1.116ZM5.706 14.025H3.333V6.633h2.375v7.392ZM4.52 5.626c-.762 0-1.378-.595-1.378-1.33 0-.735.616-1.33 1.378-1.33.76 0 1.375.595 1.375 1.33 0 .732-.615 1.33-1.375 1.33Zm10.075 8.399h-2.371v-3.593c0-.856-.016-1.96-1.235-1.96-1.234 0-1.422.935-1.422 1.9v3.653H7.197V6.633h2.275v1.01h.032c.315-.58 1.09-1.194 2.244-1.194 2.403 0 2.846 1.53 2.846 3.52v4.056Z',
143
+ }),
144
+ }),
145
+ }),
146
+ twitter: (props) =>
147
+ /* @__PURE__ */ jsx('svg', {
148
+ fill: 'currentColor',
149
+ viewBox: '0 0 17 17',
150
+ ...props,
151
+ children: /* @__PURE__ */ jsx('g', {
152
+ clipPath: 'url(#a)',
153
+ children: /* @__PURE__ */ jsx('path', {
154
+ fill: 'currentColor',
155
+ d: 'M13.158 2.058h2.248l-4.913 5.435 5.78 7.395h-4.525l-3.545-4.485-4.056 4.485h-2.25l5.255-5.813-5.545-7.017h4.64l3.205 4.1 3.706-4.1Zm-.79 11.527h1.246L5.57 3.293H4.233l8.135 10.292Z',
156
+ }),
157
+ }),
158
+ }),
159
+ youtube: (props) =>
160
+ /* @__PURE__ */ jsx('svg', {
161
+ fill: 'currentColor',
162
+ viewBox: '0 0 17 17',
163
+ ...props,
164
+ children: /* @__PURE__ */ jsx('g', {
165
+ clipPath: 'url(#a)',
166
+ children: /* @__PURE__ */ jsx('path', {
167
+ fill: 'currentColor',
168
+ d: 'M16.79 5.475s-.156-1.067-.637-1.536c-.61-.617-1.29-.62-1.603-.656-2.238-.158-5.597-.158-5.597-.158h-.006s-3.36 0-5.597.158c-.313.036-.994.039-1.603.656-.481.469-.635 1.536-.635 1.536S.95 6.73.95 7.982v1.174c0 1.252.16 2.507.16 2.507s.156 1.067.634 1.536c.61.617 1.41.596 1.765.662 1.282.118 5.441.154 5.441.154s3.363-.006 5.6-.16c.313-.036.994-.04 1.603-.656.481-.469.638-1.536.638-1.536s.159-1.252.159-2.507V7.982c0-1.252-.16-2.507-.16-2.507ZM7.298 10.58V6.228l4.322 2.184-4.322 2.168Z',
169
+ }),
170
+ }),
171
+ }),
172
+ account_circle: (props) =>
173
+ /* @__PURE__ */ jsx('svg', {
174
+ fill: 'currentColor',
175
+ viewBox: '0 -960 960 960',
176
+ ...props,
177
+ children: /* @__PURE__ */ jsx('path', {
178
+ d: 'M234-276q51-39 114-61.5T480-360q69 0 132 22.5T726-276q35-41 54.5-93T800-480q0-133-93.5-226.5T480-800q-133 0-226.5 93.5T160-480q0 59 19.5 111t54.5 93Zm246-164q-59 0-99.5-40.5T340-580q0-59 40.5-99.5T480-720q59 0 99.5 40.5T620-580q0 59-40.5 99.5T480-440Zm0 360q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q53 0 100-15.5t86-44.5q-39-29-86-44.5T480-280q-53 0-100 15.5T294-220q39 29 86 44.5T480-160Zm0-360q26 0 43-17t17-43q0-26-17-43t-43-17q-26 0-43 17t-17 43q0 26 17 43t43 17Zm0-60Zm0 360Z',
179
+ }),
180
+ }),
181
+ attach_file: (props) =>
182
+ /* @__PURE__ */ jsx('svg', {
183
+ fill: 'currentColor',
184
+ viewBox: '0 -960 960 960',
185
+ ...props,
186
+ children: /* @__PURE__ */ jsx('path', {
187
+ d: 'M720-330q0 104-73 177T470-80q-104 0-177-73t-73-177v-370q0-75 52.5-127.5T400-880q75 0 127.5 52.5T580-700v350q0 46-32 78t-78 32q-46 0-78-32t-32-78v-330q0-17 11.5-28.5T400-720q17 0 28.5 11.5T440-680v330q0 13 8.5 21.5T470-320q13 0 21.5-8.5T500-350v-350q-1-42-29.5-71T400-800q-42 0-71 29t-29 71v370q-1 71 49 120.5T470-160q70 0 119-49.5T640-330v-350q0-17 11.5-28.5T680-720q17 0 28.5 11.5T720-680v350Z',
188
+ }),
189
+ }),
190
+ cancel: (props) =>
191
+ /* @__PURE__ */ jsx('svg', {
192
+ fill: 'currentColor',
193
+ viewBox: '0 -960 960 960',
194
+ ...props,
195
+ children: /* @__PURE__ */ jsx('path', {
196
+ d: 'm480-424 116 116q11 11 28 11t28-11q11-11 11-28t-11-28L536-480l116-116q11-11 11-28t-11-28q-11-11-28-11t-28 11L480-536 364-652q-11-11-28-11t-28 11q-11 11-11 28t11 28l116 116-116 116q-11 11-11 28t11 28q11 11 28 11t28-11l116-116Zm0 344q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z',
197
+ }),
198
+ }),
199
+ check_circle: (props) =>
200
+ /* @__PURE__ */ jsx('svg', {
201
+ fill: 'currentColor',
202
+ viewBox: '0 -960 960 960',
203
+ ...props,
204
+ children: /* @__PURE__ */ jsx('path', {
205
+ d: 'm424-408-86-86q-11-11-28-11t-28 11q-11 11-11 28t11 28l114 114q12 12 28 12t28-12l226-226q11-11 11-28t-11-28q-11-11-28-11t-28 11L424-408Zm56 328q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z',
206
+ }),
207
+ }),
208
+ check: (props) =>
209
+ /* @__PURE__ */ jsx('svg', {
210
+ fill: 'currentColor',
211
+ viewBox: '0 -960 960 960',
212
+ ...props,
213
+ children: /* @__PURE__ */ jsx('path', {
214
+ d: 'm382-354 339-339q12-12 28-12t28 12q12 12 12 28.5T777-636L410-268q-12 12-28 12t-28-12L182-440q-12-12-11.5-28.5T183-497q12-12 28.5-12t28.5 12l142 143Z',
215
+ }),
216
+ }),
217
+ chevron_down: (props) =>
218
+ /* @__PURE__ */ jsx('svg', {
219
+ fill: 'currentColor',
220
+ viewBox: '0 -960 960 960',
221
+ ...props,
222
+ children: /* @__PURE__ */ jsx('path', {
223
+ d: 'M480-361q-8 0-15-2.5t-13-8.5L268-556q-11-11-11-28t11-28q11-11 28-11t28 11l156 156 156-156q11-11 28-11t28 11q11 11 11 28t-11 28L508-372q-6 6-13 8.5t-15 2.5Z',
224
+ }),
225
+ }),
226
+ chevron_left: (props) =>
227
+ /* @__PURE__ */ jsx('svg', {
228
+ fill: 'currentColor',
229
+ viewBox: '0 -960 960 960',
230
+ ...props,
231
+ children: /* @__PURE__ */ jsx('path', {
232
+ d: 'm432-480 156 156q11 11 11 28t-11 28q-11 11-28 11t-28-11L348-452q-6-6-8.5-13t-2.5-15q0-8 2.5-15t8.5-13l184-184q11-11 28-11t28 11q11 11 11 28t-11 28L432-480Z',
233
+ }),
234
+ }),
235
+ chevron_right: (props) =>
236
+ /* @__PURE__ */ jsx('svg', {
237
+ fill: 'currentColor',
238
+ viewBox: '0 -960 960 960',
239
+ ...props,
240
+ children: /* @__PURE__ */ jsx('path', {
241
+ d: 'M504-480 348-636q-11-11-11-28t11-28q11-11 28-11t28 11l184 184q6 6 8.5 13t2.5 15q0 8-2.5 15t-8.5 13L404-268q-11 11-28 11t-28-11q-11-11-11-28t11-28l156-156Z',
242
+ }),
243
+ }),
244
+ chevron_up: (props) =>
245
+ /* @__PURE__ */ jsx('svg', {
246
+ fill: 'currentColor',
247
+ viewBox: '0 -960 960 960',
248
+ ...props,
249
+ children: /* @__PURE__ */ jsx('path', {
250
+ d: 'M480-528 324-372q-11 11-28 11t-28-11q-11-11-11-28t11-28l184-184q12-12 28-12t28 12l184 184q11 11 11 28t-11 28q-11 11-28 11t-28-11L480-528Z',
251
+ }),
252
+ }),
253
+ close: (props) =>
254
+ /* @__PURE__ */ jsx('svg', {
255
+ fill: 'currentColor',
256
+ viewBox: '0 -960 960 960',
257
+ ...props,
258
+ children: /* @__PURE__ */ jsx('path', {
259
+ d: 'M480-424 284-228q-11 11-28 11t-28-11q-11-11-11-28t11-28l196-196-196-196q-11-11-11-28t11-28q11-11 28-11t28 11l196 196 196-196q11-11 28-11t28 11q11 11 11 28t-11 28L536-480l196 196q11 11 11 28t-11 28q-11 11-28 11t-28-11L480-424Z',
260
+ }),
261
+ }),
262
+ collapse_all: (props) =>
263
+ /* @__PURE__ */ jsx('svg', {
264
+ fill: 'currentColor',
265
+ viewBox: '0 -960 960 960',
266
+ ...props,
267
+ children: /* @__PURE__ */ jsx('path', {
268
+ d: 'M480-264 324-108q-11 11-28 11t-28-11q-11-11-11-28t11-28l155-155q23-23 57-23t57 23l155 155q11 11 11 28t-11 28q-11 11-28 11t-28-11L480-264Zm0-432 156-156q11-11 28-11t28 11q11 11 11 28t-11 28L537-641q-23 23-57 23t-57-23L268-796q-11-11-11-28t11-28q11-11 28-11t28 11l156 156Z',
269
+ }),
270
+ }),
271
+ computer: (props) =>
272
+ /* @__PURE__ */ jsx('svg', {
273
+ fill: 'currentColor',
274
+ viewBox: '0 -960 960 960',
275
+ ...props,
276
+ children: /* @__PURE__ */ jsx('path', {
277
+ d: 'M80-120q-17 0-28.5-11.5T40-160q0-17 11.5-28.5T80-200h800q17 0 28.5 11.5T920-160q0 17-11.5 28.5T880-120H80Zm80-120q-33 0-56.5-23.5T80-320v-440q0-33 23.5-56.5T160-840h640q33 0 56.5 23.5T880-760v440q0 33-23.5 56.5T800-240H160Zm0-80h640v-440H160v440Zm0 0v-440 440Z',
278
+ }),
279
+ }),
280
+ copy: (props) =>
281
+ /* @__PURE__ */ jsx('svg', {
282
+ fill: 'currentColor',
283
+ viewBox: '0 -960 960 960',
284
+ ...props,
285
+ children: /* @__PURE__ */ jsx('path', {
286
+ d: 'M360-240q-33 0-56.5-23.5T280-320v-480q0-33 23.5-56.5T360-880h360q33 0 56.5 23.5T800-800v480q0 33-23.5 56.5T720-240H360Zm0-80h360v-480H360v480ZM200-80q-33 0-56.5-23.5T120-160v-520q0-17 11.5-28.5T160-720q17 0 28.5 11.5T200-680v520h400q17 0 28.5 11.5T640-120q0 17-11.5 28.5T600-80H200Zm160-240v-480 480Z',
287
+ }),
288
+ }),
289
+ dark_mode: (props) =>
290
+ /* @__PURE__ */ jsx('svg', {
291
+ fill: 'currentColor',
292
+ viewBox: '0 -960 960 960',
293
+ ...props,
294
+ children: /* @__PURE__ */ jsx('path', {
295
+ d: 'M480-120q-151 0-255.5-104.5T120-480q0-138 90-239.5T440-838q13-2 23 3.5t16 14.5q6 9 6.5 21t-7.5 23q-17 26-25.5 55t-8.5 61q0 90 63 153t153 63q31 0 61.5-9t54.5-25q11-7 22.5-6.5T819-479q10 5 15.5 15t3.5 24q-14 138-117.5 229T480-120Zm0-80q88 0 158-48.5T740-375q-20 5-40 8t-40 3q-123 0-209.5-86.5T364-660q0-20 3-40t8-40q-78 32-126.5 102T200-480q0 116 82 198t198 82Zm-10-270Z',
296
+ }),
297
+ }),
298
+ dock_to_left: (props) =>
299
+ /* @__PURE__ */ jsx('svg', {
300
+ fill: 'currentColor',
301
+ viewBox: '0 -960 960 960',
302
+ ...props,
303
+ children: /* @__PURE__ */ jsx('path', {
304
+ d: 'M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H200Zm440-80h120v-560H640v560Zm-80 0v-560H200v560h360Zm80 0h120-120Z',
305
+ }),
306
+ }),
307
+ dock_to_right: (props) =>
308
+ /* @__PURE__ */ jsx('svg', {
309
+ fill: 'currentColor',
310
+ viewBox: '0 -960 960 960',
311
+ ...props,
312
+ children: /* @__PURE__ */ jsx('path', {
313
+ d: 'M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H200Zm120-80v-560H200v560h120Zm80 0h360v-560H400v560Zm-80 0H200h120Z',
314
+ }),
315
+ }),
316
+ delete: (props) =>
317
+ /* @__PURE__ */ jsx('svg', {
318
+ fill: 'currentColor',
319
+ viewBox: '0 -960 960 960',
320
+ ...props,
321
+ children: /* @__PURE__ */ jsx('path', {
322
+ d: 'M280-120q-33 0-56.5-23.5T200-200v-520q-17 0-28.5-11.5T160-760q0-17 11.5-28.5T200-800h160q0-17 11.5-28.5T400-840h160q17 0 28.5 11.5T600-800h160q17 0 28.5 11.5T800-760q0 17-11.5 28.5T760-720v520q0 33-23.5 56.5T680-120H280Zm400-600H280v520h400v-520ZM400-280q17 0 28.5-11.5T440-320v-280q0-17-11.5-28.5T400-640q-17 0-28.5 11.5T360-600v280q0 17 11.5 28.5T400-280Zm160 0q17 0 28.5-11.5T600-320v-280q0-17-11.5-28.5T560-640q-17 0-28.5 11.5T520-600v280q0 17 11.5 28.5T560-280ZM280-720v520-520Z',
323
+ }),
324
+ }),
325
+ desktop: (props) =>
326
+ /* @__PURE__ */ jsx('svg', {
327
+ fill: 'currentColor',
328
+ viewBox: '0 -960 960 960',
329
+ ...props,
330
+ children: /* @__PURE__ */ jsx('path', {
331
+ d: 'M400-200v-80H160q-33 0-56.5-23.5T80-360v-400q0-33 23.5-56.5T160-840h640q33 0 56.5 23.5T880-760v400q0 33-23.5 56.5T800-280H560v80h40q17 0 28.5 11.5T640-160q0 17-11.5 28.5T600-120H360q-17 0-28.5-11.5T320-160q0-17 11.5-28.5T360-200h40ZM160-360h640v-400H160v400Zm0 0v-400 400Z',
332
+ }),
333
+ }),
334
+ display_settings: (props) =>
335
+ /* @__PURE__ */ jsx('svg', {
336
+ fill: 'currentColor',
337
+ viewBox: '0 -960 960 960',
338
+ ...props,
339
+ children: /* @__PURE__ */ jsx('path', {
340
+ d: 'M300-410v20q0 13 8.5 21.5T330-360q13 0 21.5-8.5T360-390v-100q0-13-8.5-21.5T330-520q-13 0-21.5 8.5T300-490v20h-30q-13 0-21.5 8.5T240-440q0 13 8.5 21.5T270-410h30Zm130 0h260q13 0 21.5-8.5T720-440q0-13-8.5-21.5T690-470H430q-13 0-21.5 8.5T400-440q0 13 8.5 21.5T430-410Zm230-160h30q13 0 21.5-8.5T720-600q0-13-8.5-21.5T690-630h-30v-20q0-13-8.5-21.5T630-680q-13 0-21.5 8.5T600-650v100q0 13 8.5 21.5T630-520q13 0 21.5-8.5T660-550v-20Zm-390 0h260q13 0 21.5-8.5T560-600q0-13-8.5-21.5T530-630H270q-13 0-21.5 8.5T240-600q0 13 8.5 21.5T270-570ZM160-200q-33 0-56.5-23.5T80-280v-480q0-33 23.5-56.5T160-840h640q33 0 56.5 23.5T880-760v480q0 33-23.5 56.5T800-200H640v40q0 17-11.5 28.5T600-120H360q-17 0-28.5-11.5T320-160v-40H160Zm0-80h640v-480H160v480Zm0 0v-480 480Z',
341
+ }),
342
+ }),
343
+ double_arrow_left: (props) =>
344
+ /* @__PURE__ */ jsx('svg', {
345
+ fill: 'currentColor',
346
+ viewBox: '0 -960 960 960',
347
+ ...props,
348
+ children: /* @__PURE__ */ jsx('path', {
349
+ d: 'm313-480 155 156q11 11 11.5 27.5T468-268q-11 11-28 11t-28-11L228-452q-6-6-8.5-13t-2.5-15q0-8 2.5-15t8.5-13l184-184q11-11 27.5-11.5T468-692q11 11 11 28t-11 28L313-480Zm264 0 155 156q11 11 11.5 27.5T732-268q-11 11-28 11t-28-11L492-452q-6-6-8.5-13t-2.5-15q0-8 2.5-15t8.5-13l184-184q11-11 27.5-11.5T732-692q11 11 11 28t-11 28L577-480Z',
350
+ }),
351
+ }),
352
+ double_arrow_right: (props) =>
353
+ /* @__PURE__ */ jsx('svg', {
354
+ fill: 'currentColor',
355
+ viewBox: '0 -960 960 960',
356
+ ...props,
357
+ children: /* @__PURE__ */ jsx('path', {
358
+ d: 'M383-480 228-636q-11-11-11.5-27.5T228-692q11-11 28-11t28 11l184 184q6 6 8.5 13t2.5 15q0 8-2.5 15t-8.5 13L284-268q-11 11-27.5 11.5T228-268q-11-11-11-28t11-28l155-156Zm264 0L492-636q-11-11-11.5-27.5T492-692q11-11 28-11t28 11l184 184q6 6 8.5 13t2.5 15q0 8-2.5 15t-8.5 13L548-268q-11 11-27.5 11.5T492-268q-11-11-11-28t11-28l155-156Z',
359
+ }),
360
+ }),
361
+ download: (props) =>
362
+ /* @__PURE__ */ jsx('svg', {
363
+ fill: 'currentColor',
364
+ viewBox: '0 -960 960 960',
365
+ ...props,
366
+ children: /* @__PURE__ */ jsx('path', {
367
+ d: 'M480-337q-8 0-15-2.5t-13-8.5L308-492q-12-12-11.5-28t11.5-28q12-12 28.5-12.5T365-549l75 75v-286q0-17 11.5-28.5T480-800q17 0 28.5 11.5T520-760v286l75-75q12-12 28.5-11.5T652-548q11 12 11.5 28T652-492L508-348q-6 6-13 8.5t-15 2.5ZM240-160q-33 0-56.5-23.5T160-240v-80q0-17 11.5-28.5T200-360q17 0 28.5 11.5T240-320v80h480v-80q0-17 11.5-28.5T760-360q17 0 28.5 11.5T800-320v80q0 33-23.5 56.5T720-160H240Z',
368
+ }),
369
+ }),
370
+ east: (props) =>
371
+ /* @__PURE__ */ jsx('svg', {
372
+ fill: 'currentColor',
373
+ viewBox: '0 -960 960 960',
374
+ ...props,
375
+ children: /* @__PURE__ */ jsx('path', {
376
+ d: 'M727-440H120q-17 0-28.5-11.5T80-480q0-17 11.5-28.5T120-520h607L572-676q-11-11-11.5-27.5T572-732q11-11 28-11t28 11l224 224q6 6 8.5 13t2.5 15q0 8-2.5 15t-8.5 13L628-228q-11 11-27.5 11T572-228q-12-12-12-28.5t12-28.5l155-155Z',
377
+ }),
378
+ }),
379
+ error: (props) =>
380
+ /* @__PURE__ */ jsx('svg', {
381
+ fill: 'currentColor',
382
+ viewBox: '0 -960 960 960',
383
+ ...props,
384
+ children: /* @__PURE__ */ jsx('path', {
385
+ d: 'M480-280q17 0 28.5-11.5T520-320q0-17-11.5-28.5T480-360q-17 0-28.5 11.5T440-320q0 17 11.5 28.5T480-280Zm0-160q17 0 28.5-11.5T520-480v-160q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640v160q0 17 11.5 28.5T480-440Zm0 360q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z',
386
+ }),
387
+ }),
388
+ exclamation: (props) =>
389
+ /* @__PURE__ */ jsx('svg', {
390
+ fill: 'currentColor',
391
+ viewBox: '0 -960 960 960',
392
+ ...props,
393
+ children: /* @__PURE__ */ jsx('path', {
394
+ d: 'M480-400q-17 0-28.5-11.5T440-440v-280q0-17 11.5-28.5T480-760q17 0 28.5 11.5T520-720v280q0 17-11.5 28.5T480-400Zm0 200q-17 0-28.5-11.5T440-240q0-17 11.5-28.5T480-280q17 0 28.5 11.5T520-240q0 17-11.5 28.5T480-200Z',
395
+ }),
396
+ }),
397
+ help: (props) =>
398
+ /* @__PURE__ */ jsx('svg', {
399
+ fill: 'currentColor',
400
+ viewBox: '0 -960 960 960',
401
+ ...props,
402
+ children: /* @__PURE__ */ jsx('path', {
403
+ d: 'M478-240q21 0 35.5-14.5T528-290q0-21-14.5-35.5T478-340q-21 0-35.5 14.5T428-290q0 21 14.5 35.5T478-240Zm2 160q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Zm4-172q25 0 43.5 16t18.5 40q0 22-13.5 39T502-525q-23 20-40.5 44T444-427q0 14 10.5 23.5T479-394q15 0 25.5-10t13.5-25q4-21 18-37.5t30-31.5q23-22 39.5-48t16.5-58q0-51-41.5-83.5T484-720q-38 0-72.5 16T359-655q-7 12-4.5 25.5T368-609q14 8 29 5t25-17q11-15 27.5-23t34.5-8Z',
404
+ }),
405
+ }),
406
+ info: (props) =>
407
+ /* @__PURE__ */ jsx('svg', {
408
+ fill: 'currentColor',
409
+ viewBox: '0 -960 960 960',
410
+ ...props,
411
+ children: /* @__PURE__ */ jsx('path', {
412
+ d: 'M480-280q17 0 28.5-11.5T520-320v-160q0-17-11.5-28.5T480-520q-17 0-28.5 11.5T440-480v160q0 17 11.5 28.5T480-280Zm0-320q17 0 28.5-11.5T520-640q0-17-11.5-28.5T480-680q-17 0-28.5 11.5T440-640q0 17 11.5 28.5T480-600Zm0 520q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z',
413
+ }),
414
+ }),
415
+ light_mode: (props) =>
416
+ /* @__PURE__ */ jsx('svg', {
417
+ fill: 'currentColor',
418
+ viewBox: '0 -960 960 960',
419
+ ...props,
420
+ children: /* @__PURE__ */ jsx('path', {
421
+ d: 'M480-360q50 0 85-35t35-85q0-50-35-85t-85-35q-50 0-85 35t-35 85q0 50 35 85t85 35Zm0 80q-83 0-141.5-58.5T280-480q0-83 58.5-141.5T480-680q83 0 141.5 58.5T680-480q0 83-58.5 141.5T480-280ZM80-440q-17 0-28.5-11.5T40-480q0-17 11.5-28.5T80-520h80q17 0 28.5 11.5T200-480q0 17-11.5 28.5T160-440H80Zm720 0q-17 0-28.5-11.5T760-480q0-17 11.5-28.5T800-520h80q17 0 28.5 11.5T920-480q0 17-11.5 28.5T880-440h-80ZM480-760q-17 0-28.5-11.5T440-800v-80q0-17 11.5-28.5T480-920q17 0 28.5 11.5T520-880v80q0 17-11.5 28.5T480-760Zm0 720q-17 0-28.5-11.5T440-80v-80q0-17 11.5-28.5T480-200q17 0 28.5 11.5T520-160v80q0 17-11.5 28.5T480-40ZM226-678l-43-42q-12-11-11.5-28t11.5-29q12-12 29-12t28 12l42 43q11 12 11 28t-11 28q-11 12-27.5 11.5T226-678Zm494 495-42-43q-11-12-11-28.5t11-27.5q11-12 27.5-11.5T734-282l43 42q12 11 11.5 28T777-183q-12 12-29 12t-28-12Zm-42-495q-12-11-11.5-27.5T678-734l42-43q11-12 28-11.5t29 11.5q12 12 12 29t-12 28l-43 42q-12 11-28 11t-28-11ZM183-183q-12-12-12-29t12-28l43-42q12-11 28.5-11t27.5 11q12 11 11.5 27.5T282-226l-42 43q-11 12-28 11.5T183-183Zm297-297Z',
422
+ }),
423
+ }),
424
+ link: (props) =>
425
+ /* @__PURE__ */ jsx('svg', {
426
+ fill: 'currentColor',
427
+ viewBox: '0 -960 960 960',
428
+ ...props,
429
+ children: /* @__PURE__ */ jsx('path', {
430
+ d: 'M280-280q-83 0-141.5-58.5T80-480q0-83 58.5-141.5T280-680h120q17 0 28.5 11.5T440-640q0 17-11.5 28.5T400-600H280q-50 0-85 35t-35 85q0 50 35 85t85 35h120q17 0 28.5 11.5T440-320q0 17-11.5 28.5T400-280H280Zm80-160q-17 0-28.5-11.5T320-480q0-17 11.5-28.5T360-520h240q17 0 28.5 11.5T640-480q0 17-11.5 28.5T600-440H360Zm200 160q-17 0-28.5-11.5T520-320q0-17 11.5-28.5T560-360h120q50 0 85-35t35-85q0-50-35-85t-85-35H560q-17 0-28.5-11.5T520-640q0-17 11.5-28.5T560-680h120q83 0 141.5 58.5T880-480q0 83-58.5 141.5T680-280H560Z',
431
+ }),
432
+ }),
433
+ login: (props) =>
434
+ /* @__PURE__ */ jsx('svg', {
435
+ fill: 'currentColor',
436
+ viewBox: '0 -960 960 960',
437
+ ...props,
438
+ children: /* @__PURE__ */ jsx('path', {
439
+ d: 'M520-120q-17 0-28.5-11.5T480-160q0-17 11.5-28.5T520-200h240v-560H520q-17 0-28.5-11.5T480-800q0-17 11.5-28.5T520-840h240q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H520Zm-73-320H160q-17 0-28.5-11.5T120-480q0-17 11.5-28.5T160-520h287l-75-75q-11-11-11-27t11-28q11-12 28-12.5t29 11.5l143 143q12 12 12 28t-12 28L429-309q-12 12-28.5 11.5T372-310q-11-12-10.5-28.5T373-366l74-74Z',
440
+ }),
441
+ }),
442
+ logout: (props) =>
443
+ /* @__PURE__ */ jsx('svg', {
444
+ fill: 'currentColor',
445
+ viewBox: '0 -960 960 960',
446
+ ...props,
447
+ children: /* @__PURE__ */ jsx('path', {
448
+ d: 'M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h240q17 0 28.5 11.5T480-800q0 17-11.5 28.5T440-760H200v560h240q17 0 28.5 11.5T480-160q0 17-11.5 28.5T440-120H200Zm487-320H400q-17 0-28.5-11.5T360-480q0-17 11.5-28.5T400-520h287l-75-75q-11-11-11-27t11-28q11-12 28-12.5t29 11.5l143 143q12 12 12 28t-12 28L669-309q-12 12-28.5 11.5T612-310q-11-12-10.5-28.5T613-366l74-74Z',
449
+ }),
450
+ }),
451
+ menu: (props) =>
452
+ /* @__PURE__ */ jsx('svg', {
453
+ fill: 'currentColor',
454
+ viewBox: '0 -960 960 960',
455
+ ...props,
456
+ children: /* @__PURE__ */ jsx('path', {
457
+ d: 'M160-240q-17 0-28.5-11.5T120-280q0-17 11.5-28.5T160-320h640q17 0 28.5 11.5T840-280q0 17-11.5 28.5T800-240H160Zm0-200q-17 0-28.5-11.5T120-480q0-17 11.5-28.5T160-520h640q17 0 28.5 11.5T840-480q0 17-11.5 28.5T800-440H160Zm0-200q-17 0-28.5-11.5T120-680q0-17 11.5-28.5T160-720h640q17 0 28.5 11.5T840-680q0 17-11.5 28.5T800-640H160Z',
458
+ }),
459
+ }),
460
+ more_horiz: (props) =>
461
+ /* @__PURE__ */ jsx('svg', {
462
+ fill: 'currentColor',
463
+ viewBox: '0 -960 960 960',
464
+ ...props,
465
+ children: /* @__PURE__ */ jsx('path', {
466
+ d: 'M240-400q-33 0-56.5-23.5T160-480q0-33 23.5-56.5T240-560q33 0 56.5 23.5T320-480q0 33-23.5 56.5T240-400Zm240 0q-33 0-56.5-23.5T400-480q0-33 23.5-56.5T480-560q33 0 56.5 23.5T560-480q0 33-23.5 56.5T480-400Zm240 0q-33 0-56.5-23.5T640-480q0-33 23.5-56.5T720-560q33 0 56.5 23.5T800-480q0 33-23.5 56.5T720-400Z',
467
+ }),
468
+ }),
469
+ more_vert: (props) =>
470
+ /* @__PURE__ */ jsx('svg', {
471
+ fill: 'currentColor',
472
+ viewBox: '0 -960 960 960',
473
+ ...props,
474
+ children: /* @__PURE__ */ jsx('path', {
475
+ d: 'M480-160q-33 0-56.5-23.5T400-240q0-33 23.5-56.5T480-320q33 0 56.5 23.5T560-240q0 33-23.5 56.5T480-160Zm0-240q-33 0-56.5-23.5T400-480q0-33 23.5-56.5T480-560q33 0 56.5 23.5T560-480q0 33-23.5 56.5T480-400Zm0-240q-33 0-56.5-23.5T400-720q0-33 23.5-56.5T480-800q33 0 56.5 23.5T560-720q0 33-23.5 56.5T480-640Z',
476
+ }),
477
+ }),
478
+ north: (props) =>
479
+ /* @__PURE__ */ jsx('svg', {
480
+ fill: 'currentColor',
481
+ viewBox: '0 -960 960 960',
482
+ ...props,
483
+ children: /* @__PURE__ */ jsx('path', {
484
+ d: 'M480-80q-17 0-28.5-11.5T440-120v-607L284-572q-11 11-27.5 11.5T228-572q-11-11-11-28t11-28l224-224q6-6 13-8.5t15-2.5q8 0 15 2.5t13 8.5l224 224q11 11 11 27.5T732-572q-12 12-28.5 12T675-572L520-727v607q0 17-11.5 28.5T480-80Z',
485
+ }),
486
+ }),
487
+ open_in_new: (props) =>
488
+ /* @__PURE__ */ jsx('svg', {
489
+ fill: 'currentColor',
490
+ viewBox: '0 -960 960 960',
491
+ ...props,
492
+ children: /* @__PURE__ */ jsx('path', {
493
+ d: 'M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h240q17 0 28.5 11.5T480-800q0 17-11.5 28.5T440-760H200v560h560v-240q0-17 11.5-28.5T800-480q17 0 28.5 11.5T840-440v240q0 33-23.5 56.5T760-120H200Zm560-584L416-360q-11 11-28 11t-28-11q-11-11-11-28t11-28l344-344H600q-17 0-28.5-11.5T560-800q0-17 11.5-28.5T600-840h200q17 0 28.5 11.5T840-800v200q0 17-11.5 28.5T800-560q-17 0-28.5-11.5T760-600v-104Z',
494
+ }),
495
+ }),
496
+ print: (props) =>
497
+ /* @__PURE__ */ jsx('svg', {
498
+ fill: 'currentColor',
499
+ viewBox: '0 -960 960 960',
500
+ ...props,
501
+ children: /* @__PURE__ */ jsx('path', {
502
+ d: 'M320-120q-33 0-56.5-23.5T240-200v-80h-80q-33 0-56.5-23.5T80-360v-160q0-51 35-85.5t85-34.5h560q51 0 85.5 34.5T880-520v160q0 33-23.5 56.5T800-280h-80v80q0 33-23.5 56.5T640-120H320ZM160-360h80q0-33 23.5-56.5T320-440h320q33 0 56.5 23.5T720-360h80v-160q0-17-11.5-28.5T760-560H200q-17 0-28.5 11.5T160-520v160Zm480-280v-120H320v120h-80v-120q0-33 23.5-56.5T320-840h320q33 0 56.5 23.5T720-760v120h-80Zm80 180q17 0 28.5-11.5T760-500q0-17-11.5-28.5T720-540q-17 0-28.5 11.5T680-500q0 17 11.5 28.5T720-460Zm-80 260v-160H320v160h320ZM160-560h640-640Z',
503
+ }),
504
+ }),
505
+ progress_activity: (props) =>
506
+ /* @__PURE__ */ jsx('svg', {
507
+ fill: 'currentColor',
508
+ viewBox: '0 -960 960 960',
509
+ ...props,
510
+ children: /* @__PURE__ */ jsx('path', {
511
+ d: 'M480-80q-82 0-155-31.5t-127.5-86Q143-252 111.5-325T80-480q0-83 31.5-155.5t86-127Q252-817 325-848.5T480-880q17 0 28.5 11.5T520-840q0 17-11.5 28.5T480-800q-133 0-226.5 93.5T160-480q0 133 93.5 226.5T480-160q133 0 226.5-93.5T800-480q0-17 11.5-28.5T840-520q17 0 28.5 11.5T880-480q0 82-31.5 155t-86 127.5q-54.5 54.5-127 86T480-80Z',
512
+ }),
513
+ }),
514
+ remove: (props) =>
515
+ /* @__PURE__ */ jsx('svg', {
516
+ fill: 'currentColor',
517
+ viewBox: '0 -960 960 960',
518
+ ...props,
519
+ children: /* @__PURE__ */ jsx('path', {
520
+ d: 'M240-440q-17 0-28.5-11.5T200-480q0-17 11.5-28.5T240-520h480q17 0 28.5 11.5T760-480q0 17-11.5 28.5T720-440H240Z',
521
+ }),
522
+ }),
523
+ search: (props) =>
524
+ /* @__PURE__ */ jsx('svg', {
525
+ fill: 'currentColor',
526
+ viewBox: '0 -960 960 960',
527
+ ...props,
528
+ children: /* @__PURE__ */ jsx('path', {
529
+ d: 'M380-320q-109 0-184.5-75.5T120-580q0-109 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l224 224q11 11 11 28t-11 28q-11 11-28 11t-28-11L532-372q-30 24-69 38t-83 14Zm0-80q75 0 127.5-52.5T560-580q0-75-52.5-127.5T380-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Z',
530
+ }),
531
+ }),
532
+ settings_brightness: (props) =>
533
+ /* @__PURE__ */ jsx('svg', {
534
+ fill: 'currentColor',
535
+ viewBox: '0 -960 960 960',
536
+ ...props,
537
+ children: /* @__PURE__ */ jsx('path', {
538
+ d: 'm420-320 46 46q6 6 14 6t14-6l46-46h80q8 0 14-6t6-14v-80l46-46q6-6 6-14t-6-14l-46-46v-80q0-8-6-14t-14-6h-80l-46-46q-6-6-14-6t-14 6l-46 46h-80q-8 0-14 6t-6 14v80l-46 46q-6 6-6 14t6 14l46 46v80q0 8 6 14t14 6h80Zm60-40v-240q50 0 85 35t35 85q0 50-35 85t-85 35ZM160-160q-33 0-56.5-23.5T80-240v-480q0-33 23.5-56.5T160-800h640q33 0 56.5 23.5T880-720v480q0 33-23.5 56.5T800-160H160Zm0-80h640v-480H160v480Zm0 0v-480 480Z',
539
+ }),
540
+ }),
541
+ share: (props) =>
542
+ /* @__PURE__ */ jsx('svg', {
543
+ fill: 'currentColor',
544
+ viewBox: '0 -960 960 960',
545
+ ...props,
546
+ children: /* @__PURE__ */ jsx('path', {
547
+ d: 'M680-80q-50 0-85-35t-35-85q0-6 3-28L282-392q-16 15-37 23.5t-45 8.5q-50 0-85-35t-35-85q0-50 35-85t85-35q24 0 45 8.5t37 23.5l281-164q-2-7-2.5-13.5T560-760q0-50 35-85t85-35q50 0 85 35t35 85q0 50-35 85t-85 35q-24 0-45-8.5T598-672L317-508q2 7 2.5 13.5t.5 14.5q0 8-.5 14.5T317-452l281 164q16-15 37-23.5t45-8.5q50 0 85 35t35 85q0 50-35 85t-85 35Zm0-80q17 0 28.5-11.5T720-200q0-17-11.5-28.5T680-240q-17 0-28.5 11.5T640-200q0 17 11.5 28.5T680-160ZM200-440q17 0 28.5-11.5T240-480q0-17-11.5-28.5T200-520q-17 0-28.5 11.5T160-480q0 17 11.5 28.5T200-440Zm480-280q17 0 28.5-11.5T720-760q0-17-11.5-28.5T680-800q-17 0-28.5 11.5T640-760q0 17 11.5 28.5T680-720Zm0 520ZM200-480Zm480-280Z',
548
+ }),
549
+ }),
550
+ side_navigation: (props) =>
551
+ /* @__PURE__ */ jsx('svg', {
552
+ fill: 'currentColor',
553
+ viewBox: '0 -960 960 960',
554
+ ...props,
555
+ children: /* @__PURE__ */ jsx('path', {
556
+ d: 'M200-120q-33 0-56.5-23.5T120-200v-560q0-33 23.5-56.5T200-840h560q33 0 56.5 23.5T840-760v560q0 33-23.5 56.5T760-120H200Zm280-80h280v-560H480v560Z',
557
+ }),
558
+ }),
559
+ south: (props) =>
560
+ /* @__PURE__ */ jsx('svg', {
561
+ fill: 'currentColor',
562
+ viewBox: '0 -960 960 960',
563
+ ...props,
564
+ children: /* @__PURE__ */ jsx('path', {
565
+ d: 'M480-97q-8 0-15-2.5t-13-8.5L228-332q-11-11-11-28t11-28q12-12 28.5-11.5T284-388l156 155v-607q0-17 11.5-28.5T480-880q17 0 28.5 11.5T520-840v607l155-155q12-12 28.5-12t28.5 12q11 12 11 28.5T732-332L508-108q-6 6-13 8.5T480-97Z',
566
+ }),
567
+ }),
568
+ unfold_less: (props) =>
569
+ /* @__PURE__ */ jsx('svg', {
570
+ fill: 'currentColor',
571
+ viewBox: '0 -960 960 960',
572
+ ...props,
573
+ children: /* @__PURE__ */ jsx('path', {
574
+ d: 'm480-284-96 96q-11 11-28 11t-28-11q-11-11-11-28t11-28l124-124q6-6 13-8.5t15-2.5q8 0 15 2.5t13 8.5l124 124q11 11 11 28t-11 28q-11 11-28 11t-28-11l-96-96Zm0-392 96-96q11-11 28-11t28 11q11 11 11 28t-11 28L508-592q-6 6-13 8.5t-15 2.5q-8 0-15-2.5t-13-8.5L328-716q-11-11-11-28t11-28q11-11 28-11t28 11l96 96Z',
575
+ }),
576
+ }),
577
+ unfold_more: (props) =>
578
+ /* @__PURE__ */ jsx('svg', {
579
+ fill: 'currentColor',
580
+ viewBox: '0 -960 960 960',
581
+ ...props,
582
+ children: /* @__PURE__ */ jsx('path', {
583
+ d: 'm480-236 93-93q12-12 29-12t29 12q12 12 12 29t-12 29L508-148q-6 6-13 8.5t-15 2.5q-8 0-15-2.5t-13-8.5L329-271q-12-12-12-29t12-29q12-12 29-12t29 12l93 93Zm0-484-93 93q-12 12-29 12t-29-12q-12-12-12-29t12-29l123-123q6-6 13-8.5t15-2.5q8 0 15 2.5t13 8.5l123 123q12 12 12 29t-12 29q-12 12-29 12t-29-12l-93-93Z',
584
+ }),
585
+ }),
586
+ upload: (props) =>
587
+ /* @__PURE__ */ jsx('svg', {
588
+ fill: 'currentColor',
589
+ viewBox: '0 -960 960 960',
590
+ ...props,
591
+ children: /* @__PURE__ */ jsx('path', {
592
+ d: 'M240-160q-33 0-56.5-23.5T160-240v-80q0-17 11.5-28.5T200-360q17 0 28.5 11.5T240-320v80h480v-80q0-17 11.5-28.5T760-360q17 0 28.5 11.5T800-320v80q0 33-23.5 56.5T720-160H240Zm200-486-75 75q-12 12-28.5 11.5T308-572q-11-12-11.5-28t11.5-28l144-144q6-6 13-8.5t15-2.5q8 0 15 2.5t13 8.5l144 144q12 12 11.5 28T652-572q-12 12-28.5 12.5T595-571l-75-75v286q0 17-11.5 28.5T480-320q-17 0-28.5-11.5T440-360v-286Z',
593
+ }),
594
+ }),
595
+ west: (props) =>
596
+ /* @__PURE__ */ jsx('svg', {
597
+ fill: 'currentColor',
598
+ viewBox: '0 -960 960 960',
599
+ ...props,
600
+ children: /* @__PURE__ */ jsx('path', {
601
+ d: 'M233-440h607q17 0 28.5-11.5T880-480q0-17-11.5-28.5T840-520H233l155-156q11-11 11.5-27.5T388-732q-11-11-28-11t-28 11L108-508q-6 6-8.5 13T97-480q0 8 2.5 15t8.5 13l224 224q11 11 27.5 11t28.5-11q12-12 12-28.5T388-285L233-440Z',
602
+ }),
603
+ }),
604
+ }
605
+ function SocialLink({ href, icon: Icon, children }) {
606
+ return /* @__PURE__ */ jsxs(Link3, {
607
+ href,
608
+ className: 'group',
609
+ children: [
610
+ /* @__PURE__ */ jsx('span', { className: 'sr-only', children }),
611
+ /* @__PURE__ */ jsx(Icon, {
612
+ className:
613
+ 'h-5 w-5 fill-zinc-700 transition group-hover:fill-zinc-900 dark:group-hover:fill-zinc-500',
614
+ }),
615
+ ],
616
+ })
198
617
  }
199
618
  function SmallPrint() {
200
- return /* @__PURE__ */ jsxs("div", { className: "flex flex-col items-center justify-between gap-5 border-t border-zinc-900/5 pt-8 sm:flex-row dark:border-white/5", children: [
201
- /* @__PURE__ */ jsxs("p", { className: "text-xs text-zinc-600 dark:text-zinc-400", children: [
202
- "\xA9 Copyright ",
203
- (/* @__PURE__ */ new Date()).getFullYear(),
204
- ". All rights reserved."
205
- ] }),
206
- /* @__PURE__ */ jsx("div", { className: "flex gap-4", children: /* @__PURE__ */ jsx(SocialLink, { href: "#", icon: Icons.github, children: "Follow us on GitHub" }) })
207
- ] });
619
+ return /* @__PURE__ */ jsxs('div', {
620
+ className:
621
+ 'flex flex-col items-center justify-between gap-5 border-t border-zinc-900/5 pt-8 sm:flex-row dark:border-white/5',
622
+ children: [
623
+ /* @__PURE__ */ jsxs('p', {
624
+ className: 'text-xs text-zinc-600 dark:text-zinc-400',
625
+ children: [
626
+ '\xA9 Copyright ',
627
+ /* @__PURE__ */ new Date().getFullYear(),
628
+ '. All rights reserved.',
629
+ ],
630
+ }),
631
+ /* @__PURE__ */ jsx('div', {
632
+ className: 'flex gap-4',
633
+ children: /* @__PURE__ */ jsx(SocialLink, {
634
+ href: '#',
635
+ icon: Icons.github,
636
+ children: 'Follow us on GitHub',
637
+ }),
638
+ }),
639
+ ],
640
+ })
208
641
  }
209
642
  function Footer() {
210
- return /* @__PURE__ */ jsx("footer", { className: "mx-auto w-full max-w-2xl space-y-10 pb-16 lg:max-w-5xl", children: /* @__PURE__ */ jsx(SmallPrint, {}) });
643
+ return /* @__PURE__ */ jsx('footer', {
644
+ className: 'mx-auto w-full max-w-2xl space-y-10 pb-16 lg:max-w-5xl',
645
+ children: /* @__PURE__ */ jsx(SmallPrint, {}),
646
+ })
211
647
  }
212
648
  function getNodeText(node) {
213
- let text = "";
649
+ let text = ''
214
650
  for (const child of node.children ?? []) {
215
- if ("type" in child && child.type === "text") {
216
- text += child.attributes?.content ?? "";
651
+ if ('type' in child && child.type === 'text') {
652
+ text += child.attributes?.content ?? ''
217
653
  } else if (child instanceof HTMLElement) {
218
- text += getNodeText(child);
654
+ text += getNodeText(child)
219
655
  }
220
656
  }
221
- return text;
657
+ return text
222
658
  }
223
659
  function domToSimple(node) {
224
660
  if (node.nodeType === Node.TEXT_NODE) {
225
661
  return {
226
- type: "text",
662
+ type: 'text',
227
663
  attributes: {
228
- content: node.textContent ?? void 0
229
- }
230
- };
664
+ content: node.textContent ?? void 0,
665
+ },
666
+ }
231
667
  }
232
668
  if (node.nodeType === Node.ELEMENT_NODE) {
233
669
  return {
234
670
  type: node.nodeName.toLowerCase(),
235
671
  attributes: {},
236
- children: Array.from(node.childNodes).map(domToSimple)
237
- };
672
+ children: Array.from(node.childNodes).map(domToSimple),
673
+ }
238
674
  }
239
- throw new Error("Unsupported node type");
675
+ throw new Error('Unsupported node type')
240
676
  }
241
677
  function getHeadings(slugify = slugifyWithCounter()) {
242
- const content = document.querySelector("article");
678
+ const content = document.querySelector('article')
243
679
  if (!content) {
244
- return [];
680
+ return []
245
681
  }
246
- const headings = Array.from(content.querySelectorAll("h2, h3, h4, h5, h6"));
247
- const result = [];
248
- const stack = [];
682
+ const headings = Array.from(content.querySelectorAll('h2, h3, h4, h5, h6'))
683
+ const result = []
684
+ const stack = []
249
685
  headings.forEach((el) => {
250
- const simplifiedNode = domToSimple(el);
251
- const title = getNodeText(simplifiedNode).trim();
252
- const slugifiedTitle = slugify(title);
253
- const id = el.id || slugifiedTitle;
254
- const level = parseInt(el.tagName[1]);
255
- const node = { level, id, title, children: [] };
256
- if (!el.id) el.id = id;
686
+ const simplifiedNode = domToSimple(el)
687
+ const title = getNodeText(simplifiedNode).trim()
688
+ const slugifiedTitle = slugify(title)
689
+ const id = el.id || slugifiedTitle
690
+ const level = parseInt(el.tagName[1])
691
+ const node = { level, id, title, children: [] }
692
+ if (!el.id) el.id = id
257
693
  if (level === 2) {
258
- result.push(node);
259
- stack.length = 0;
260
- stack.push(node);
694
+ result.push(node)
695
+ stack.length = 0
696
+ stack.push(node)
261
697
  } else {
262
698
  while (stack.length && stack[stack.length - 1].level >= level) {
263
- stack.pop();
699
+ stack.pop()
264
700
  }
265
701
  if (stack.length) {
266
- stack[stack.length - 1].children.push(node);
702
+ stack[stack.length - 1].children.push(node)
267
703
  }
268
- stack.push(node);
704
+ stack.push(node)
269
705
  }
270
- });
271
- return result;
706
+ })
707
+ return result
272
708
  }
273
709
  function Masthead() {
274
- return /* @__PURE__ */ jsx("div", { className: "bg-primary h-[var(--masthead-height)] w-full", children: /* @__PURE__ */ jsx("div", { className: "mx-auto flex w-full items-center justify-between px-4 py-2 sm:px-6 lg:px-8", children: /* @__PURE__ */ jsx("div", { className: "flex items-center gap-x-12", children: /* @__PURE__ */ jsx("p", { className: "text-xs text-white", children: "A NSW Government website" }) }) }) });
710
+ return /* @__PURE__ */ jsx('div', {
711
+ className: 'bg-primary h-[var(--masthead-height)] w-full',
712
+ children: /* @__PURE__ */ jsx('div', {
713
+ className: 'mx-auto flex w-full items-center justify-between px-4 py-2 sm:px-6 lg:px-8',
714
+ children: /* @__PURE__ */ jsx('div', {
715
+ className: 'flex items-center gap-x-12',
716
+ children: /* @__PURE__ */ jsx('p', {
717
+ className: 'text-xs text-white',
718
+ children: 'A NSW Government website',
719
+ }),
720
+ }),
721
+ }),
722
+ })
275
723
  }
276
724
  function Logo(props) {
277
- return /* @__PURE__ */ jsxs(Fragment, { children: [
278
- /* @__PURE__ */ jsx("span", { className: "sr-only", children: "NSW Government" }),
279
- /* @__PURE__ */ jsx(Icons.logo, { ...props })
280
- ] });
725
+ return /* @__PURE__ */ jsxs(Fragment, {
726
+ children: [
727
+ /* @__PURE__ */ jsx('span', { className: 'sr-only', children: 'NSW Government' }),
728
+ /* @__PURE__ */ jsx(Icons.logo, { ...props }),
729
+ ],
730
+ })
281
731
  }
282
- function Navigation({
283
- className,
284
- onLinkClick,
285
- navigation
286
- }) {
287
- const pathname = usePathname();
288
- return /* @__PURE__ */ jsx("nav", { className: clsx("text-base lg:text-sm", className), children: /* @__PURE__ */ jsx("ul", { role: "list", className: "flex flex-col gap-9", children: navigation.map((section) => /* @__PURE__ */ jsxs("li", { children: [
289
- /* @__PURE__ */ jsx("h2", { className: "font-display text-foreground font-medium dark:text-white", children: section.title }),
290
- /* @__PURE__ */ jsx(
291
- "ul",
292
- {
293
- role: "list",
294
- className: "border-nsw-grey-400 dark:border-nsw-grey-200/15 mt-2 flex flex-col gap-2 border-l lg:mt-4",
295
- children: section.links.map((link) => /* @__PURE__ */ jsx("li", { className: "-ml-px flex flex-col items-start gap-2", children: /* @__PURE__ */ jsx(
296
- Link3,
732
+ function Navigation({ className, onLinkClick, navigation }) {
733
+ const pathname = usePathname()
734
+ return /* @__PURE__ */ jsx('nav', {
735
+ className: clsx2('text-base lg:text-sm', className),
736
+ children: /* @__PURE__ */ jsx('ul', {
737
+ role: 'list',
738
+ className: 'flex flex-col gap-9',
739
+ children: navigation.map((section) =>
740
+ /* @__PURE__ */ jsxs(
741
+ 'li',
297
742
  {
298
- href: link.href,
299
- onClick: onLinkClick,
300
- className: clsx(
301
- "text-foreground inline-block border-l pl-5 text-base/8 sm:pl-4 sm:text-sm/6",
302
- "hover:border-nsw-grey-950 hover:text-nsw-gray-950 hover:font-semibold",
303
- "dark:text-nsw-grey-400",
304
- "dark:hover:border-nsw-grey-400 dark:hover:text-white",
305
- link.href === pathname && "border-primary text-primary border-l font-semibold dark:border-white"
306
- ),
307
- children: link.title
308
- }
309
- ) }, link.href))
310
- }
311
- )
312
- ] }, section.title)) }) });
743
+ children: [
744
+ /* @__PURE__ */ jsx('h2', {
745
+ className: 'font-display text-foreground font-medium dark:text-white',
746
+ children: section.title,
747
+ }),
748
+ /* @__PURE__ */ jsx('ul', {
749
+ role: 'list',
750
+ className:
751
+ 'border-nsw-grey-400 dark:border-nsw-grey-200/15 mt-2 flex flex-col gap-2 border-l lg:mt-4',
752
+ children: section.links.map((link) =>
753
+ /* @__PURE__ */ jsx(
754
+ 'li',
755
+ {
756
+ className: '-ml-px flex flex-col items-start gap-2',
757
+ children: /* @__PURE__ */ jsx(Link3, {
758
+ href: link.href,
759
+ onClick: onLinkClick,
760
+ className: clsx2(
761
+ 'text-foreground inline-block border-l pl-5 text-base/8 sm:pl-4 sm:text-sm/6',
762
+ 'hover:border-nsw-grey-950 hover:text-nsw-gray-950 hover:font-semibold',
763
+ 'dark:text-nsw-grey-400',
764
+ 'dark:hover:border-nsw-grey-400 dark:hover:text-white',
765
+ link.href === pathname &&
766
+ 'border-primary text-primary border-l font-semibold dark:border-white',
767
+ ),
768
+ children: link.title,
769
+ }),
770
+ },
771
+ link.href,
772
+ ),
773
+ ),
774
+ }),
775
+ ],
776
+ },
777
+ section.title,
778
+ ),
779
+ ),
780
+ }),
781
+ })
313
782
  }
314
783
  function ThemeSwitcher() {
315
- const { resolvedTheme, setTheme } = useTheme();
316
- const [mounted, setMounted] = useState(false);
317
- const classes = "fill-nsw-grey-600 dark:fill-nsw-grey-100 size-6";
784
+ const { resolvedTheme, setTheme } = useTheme()
785
+ const [mounted, setMounted] = useState(false)
786
+ const classes = 'fill-nsw-grey-600 dark:fill-nsw-grey-100 size-6'
318
787
  useEffect(() => {
319
- setMounted(true);
320
- }, []);
788
+ setMounted(true)
789
+ }, [])
321
790
  if (!mounted) {
322
- return /* @__PURE__ */ jsx(Button, { variant: "ghost", size: "icon", className: "h-10 w-10", disabled: true, children: /* @__PURE__ */ jsx(Icons.light_mode, { className: classes }) });
791
+ return /* @__PURE__ */ jsx(Button, {
792
+ variant: 'ghost',
793
+ size: 'icon',
794
+ className: 'h-10 w-10',
795
+ disabled: true,
796
+ children: /* @__PURE__ */ jsx(Icons.light_mode, { className: classes }),
797
+ })
323
798
  }
324
- return /* @__PURE__ */ jsxs(
325
- Button,
326
- {
327
- variant: "outline",
328
- size: "icon",
329
- className: "h-10 w-10 cursor-pointer",
330
- onClick: () => setTheme(resolvedTheme === "dark" ? "light" : "dark"),
331
- "aria-label": `Switch to ${resolvedTheme === "dark" ? "light" : "dark"} theme`,
332
- children: [
333
- resolvedTheme === "dark" ? /* @__PURE__ */ jsx(Icons.light_mode, { className: classes }) : /* @__PURE__ */ jsx(Icons.dark_mode, { className: classes }),
334
- /* @__PURE__ */ jsx("span", { className: "sr-only", children: resolvedTheme === "dark" ? "Switch to light theme" : "Switch to dark theme" })
335
- ]
336
- }
337
- );
799
+ return /* @__PURE__ */ jsxs(Button, {
800
+ variant: 'outline',
801
+ size: 'icon',
802
+ className: 'h-10 w-10 cursor-pointer',
803
+ onClick: () => setTheme(resolvedTheme === 'dark' ? 'light' : 'dark'),
804
+ 'aria-label': `Switch to ${resolvedTheme === 'dark' ? 'light' : 'dark'} theme`,
805
+ children: [
806
+ resolvedTheme === 'dark'
807
+ ? /* @__PURE__ */ jsx(Icons.light_mode, { className: classes })
808
+ : /* @__PURE__ */ jsx(Icons.dark_mode, { className: classes }),
809
+ /* @__PURE__ */ jsx('span', {
810
+ className: 'sr-only',
811
+ children: resolvedTheme === 'dark' ? 'Switch to light theme' : 'Switch to dark theme',
812
+ }),
813
+ ],
814
+ })
338
815
  }
339
816
  function TableOfContents({ tableOfContents }) {
340
- const [currentSection, setCurrentSection] = useState(tableOfContents[0]?.id);
817
+ const [currentSection, setCurrentSection] = useState(tableOfContents[0]?.id)
341
818
  const getHeadings2 = useCallback((tableOfContents2) => {
342
- return tableOfContents2.flatMap((node) => [node.id, ...node.children.map((child) => child.id)]).map((id) => {
343
- const el = document.getElementById(id);
344
- if (!el) return null;
345
- const style = window.getComputedStyle(el);
346
- const scrollMt = parseFloat(style.scrollMarginTop);
347
- const top = window.scrollY + el.getBoundingClientRect().top - scrollMt;
348
- return { id, top };
349
- }).filter((x) => x !== null);
350
- }, []);
819
+ return tableOfContents2
820
+ .flatMap((node) => [node.id, ...node.children.map((child) => child.id)])
821
+ .map((id) => {
822
+ const el = document.getElementById(id)
823
+ if (!el) return null
824
+ const style = window.getComputedStyle(el)
825
+ const scrollMt = parseFloat(style.scrollMarginTop)
826
+ const top = window.scrollY + el.getBoundingClientRect().top - scrollMt
827
+ return { id, top }
828
+ })
829
+ .filter((x) => x !== null)
830
+ }, [])
351
831
  useEffect(() => {
352
- if (tableOfContents.length === 0) return;
353
- const headings = getHeadings2(tableOfContents);
832
+ if (tableOfContents.length === 0) return
833
+ const headings = getHeadings2(tableOfContents)
354
834
  function onScroll() {
355
- const top = window.scrollY;
356
- let current = headings[0].id;
835
+ const top = window.scrollY
836
+ let current = headings[0].id
357
837
  for (const heading of headings) {
358
838
  if (top >= heading.top - 10) {
359
- current = heading.id;
839
+ current = heading.id
360
840
  } else {
361
- break;
841
+ break
362
842
  }
363
843
  }
364
- setCurrentSection(current);
844
+ setCurrentSection(current)
365
845
  }
366
- window.addEventListener("scroll", onScroll, { passive: true });
367
- onScroll();
846
+ window.addEventListener('scroll', onScroll, { passive: true })
847
+ onScroll()
368
848
  return () => {
369
- window.removeEventListener("scroll", onScroll);
370
- };
371
- }, [getHeadings2, tableOfContents]);
849
+ window.removeEventListener('scroll', onScroll)
850
+ }
851
+ }, [getHeadings2, tableOfContents])
372
852
  function isActive(section) {
373
853
  if (section.id === currentSection) {
374
- return true;
854
+ return true
375
855
  }
376
856
  if (!section.children) {
377
- return false;
857
+ return false
378
858
  }
379
- return section.children.findIndex(isActive) > -1;
859
+ return section.children.findIndex(isActive) > -1
380
860
  }
381
- return /* @__PURE__ */ jsx("div", { className: "hidden xl:sticky xl:top-[4.75rem] xl:-mr-6 xl:block xl:h-[calc(100vh-4.75rem)] xl:flex-none xl:overflow-y-auto xl:py-16 xl:pr-6", children: /* @__PURE__ */ jsx("nav", { "aria-labelledby": "on-this-page-title", className: "w-56", children: tableOfContents.length > 0 && /* @__PURE__ */ jsxs(Fragment, { children: [
382
- /* @__PURE__ */ jsx(
383
- "h2",
384
- {
385
- id: "on-this-page-title",
386
- className: "font-display text-sm font-medium text-slate-900 dark:text-white",
387
- children: "On this page"
388
- }
389
- ),
390
- /* @__PURE__ */ jsx("ol", { role: "list", className: "mt-4 space-y-3 text-sm", children: tableOfContents.map((section) => /* @__PURE__ */ jsxs("li", { children: [
391
- /* @__PURE__ */ jsx("h3", { children: /* @__PURE__ */ jsx(
392
- Link3,
393
- {
394
- href: `#${section.id}`,
395
- className: clsx(
396
- isActive(section) ? "text-primary font-semibold" : "font-normal text-slate-500 hover:text-slate-700 dark:text-slate-400 dark:hover:text-slate-300"
397
- ),
398
- children: section.title
399
- }
400
- ) }),
401
- section.children.length > 0 && /* @__PURE__ */ jsx(
402
- "ol",
403
- {
404
- role: "list",
405
- className: "mt-2 space-y-3 pl-5 text-slate-500 dark:text-slate-400",
406
- children: section.children.map((subSection) => /* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
407
- Link3,
408
- {
409
- href: `#${subSection.id}`,
410
- className: isActive(subSection) ? "text-primary-light font-semibold" : "hover:text-slate-600 dark:hover:text-slate-300",
411
- children: subSection.title
412
- }
413
- ) }, subSection.id))
414
- }
415
- )
416
- ] }, section.id)) })
417
- ] }) }) });
861
+ return /* @__PURE__ */ jsx('div', {
862
+ className:
863
+ 'hidden xl:sticky xl:top-[4.75rem] xl:-mr-6 xl:block xl:h-[calc(100vh-4.75rem)] xl:flex-none xl:overflow-y-auto xl:py-16 xl:pr-6',
864
+ children: /* @__PURE__ */ jsx('nav', {
865
+ 'aria-labelledby': 'on-this-page-title',
866
+ className: 'w-56',
867
+ children:
868
+ tableOfContents.length > 0 &&
869
+ /* @__PURE__ */ jsxs(Fragment, {
870
+ children: [
871
+ /* @__PURE__ */ jsx('h2', {
872
+ id: 'on-this-page-title',
873
+ className: 'font-display text-sm font-medium text-slate-900 dark:text-white',
874
+ children: 'On this page',
875
+ }),
876
+ /* @__PURE__ */ jsx('ol', {
877
+ role: 'list',
878
+ className: 'mt-4 space-y-3 text-sm',
879
+ children: tableOfContents.map((section) =>
880
+ /* @__PURE__ */ jsxs(
881
+ 'li',
882
+ {
883
+ children: [
884
+ /* @__PURE__ */ jsx('h3', {
885
+ children: /* @__PURE__ */ jsx(Link3, {
886
+ href: `#${section.id}`,
887
+ className: clsx2(
888
+ isActive(section)
889
+ ? 'text-primary font-semibold'
890
+ : 'font-normal text-slate-500 hover:text-slate-700 dark:text-slate-400 dark:hover:text-slate-300',
891
+ ),
892
+ children: section.title,
893
+ }),
894
+ }),
895
+ section.children.length > 0 &&
896
+ /* @__PURE__ */ jsx('ol', {
897
+ role: 'list',
898
+ className: 'mt-2 space-y-3 pl-5 text-slate-500 dark:text-slate-400',
899
+ children: section.children.map((subSection) =>
900
+ /* @__PURE__ */ jsx(
901
+ 'li',
902
+ {
903
+ children: /* @__PURE__ */ jsx(Link3, {
904
+ href: `#${subSection.id}`,
905
+ className: isActive(subSection)
906
+ ? 'text-primary-light font-semibold'
907
+ : 'hover:text-slate-600 dark:hover:text-slate-300',
908
+ children: subSection.title,
909
+ }),
910
+ },
911
+ subSection.id,
912
+ ),
913
+ ),
914
+ }),
915
+ ],
916
+ },
917
+ section.id,
918
+ ),
919
+ ),
920
+ }),
921
+ ],
922
+ }),
923
+ }),
924
+ })
418
925
  }
419
926
  function ArrowIcon(props) {
420
- return /* @__PURE__ */ jsx("svg", { viewBox: "0 0 16 16", "aria-hidden": "true", ...props, children: /* @__PURE__ */ jsx("path", { d: "m9.182 13.423-1.17-1.16 3.505-3.505H3V7.065h8.517l-3.506-3.5L9.181 2.4l5.512 5.511-5.511 5.512Z" }) });
927
+ return /* @__PURE__ */ jsx('svg', {
928
+ viewBox: '0 0 16 16',
929
+ 'aria-hidden': 'true',
930
+ ...props,
931
+ children: /* @__PURE__ */ jsx('path', {
932
+ d: 'm9.182 13.423-1.17-1.16 3.505-3.505H3V7.065h8.517l-3.506-3.5L9.181 2.4l5.512 5.511-5.511 5.512Z',
933
+ }),
934
+ })
421
935
  }
422
- function PageLink({
423
- title,
424
- href,
425
- dir = "next",
426
- ...props
427
- }) {
428
- return /* @__PURE__ */ jsxs("div", { ...props, children: [
429
- /* @__PURE__ */ jsx("dt", { className: "font-display text-sm font-medium text-slate-900 dark:text-white", children: dir === "next" ? "Next" : "Previous" }),
430
- /* @__PURE__ */ jsx("dd", { className: "mt-1", children: /* @__PURE__ */ jsxs(
431
- Link3,
432
- {
433
- href,
434
- className: clsx(
435
- "flex items-center gap-x-1 text-base font-semibold text-slate-500 hover:text-slate-600 dark:text-slate-400 dark:hover:text-slate-300",
436
- dir === "previous" && "flex-row-reverse"
437
- ),
438
- children: [
439
- title,
440
- /* @__PURE__ */ jsx(
441
- ArrowIcon,
442
- {
443
- className: clsx("h-4 w-4 flex-none fill-current", dir === "previous" && "-scale-x-100")
444
- }
445
- )
446
- ]
447
- }
448
- ) })
449
- ] });
936
+ function PageLink({ title, href, dir = 'next', ...props }) {
937
+ return /* @__PURE__ */ jsxs('div', {
938
+ ...props,
939
+ children: [
940
+ /* @__PURE__ */ jsx('dt', {
941
+ className: 'font-display text-sm font-medium text-slate-900 dark:text-white',
942
+ children: dir === 'next' ? 'Next' : 'Previous',
943
+ }),
944
+ /* @__PURE__ */ jsx('dd', {
945
+ className: 'mt-1',
946
+ children: /* @__PURE__ */ jsxs(Link3, {
947
+ href,
948
+ className: clsx2(
949
+ 'flex items-center gap-x-1 text-base font-semibold text-slate-500 hover:text-slate-600 dark:text-slate-400 dark:hover:text-slate-300',
950
+ dir === 'previous' && 'flex-row-reverse',
951
+ ),
952
+ children: [
953
+ title,
954
+ /* @__PURE__ */ jsx(ArrowIcon, {
955
+ className: clsx2(
956
+ 'h-4 w-4 flex-none fill-current',
957
+ dir === 'previous' && '-scale-x-100',
958
+ ),
959
+ }),
960
+ ],
961
+ }),
962
+ }),
963
+ ],
964
+ })
450
965
  }
451
966
  function PrevNextLinks({ navigation }) {
452
- const pathname = usePathname();
453
- const allLinks = navigation.flatMap((section) => section.links);
454
- const linkIndex = allLinks.findIndex((link) => link.href === pathname);
455
- const previousPage = linkIndex > -1 ? allLinks[linkIndex - 1] : null;
456
- const nextPage = linkIndex > -1 ? allLinks[linkIndex + 1] : null;
967
+ const pathname = usePathname()
968
+ const allLinks = navigation.flatMap((section) => section.links)
969
+ const linkIndex = allLinks.findIndex((link) => link.href === pathname)
970
+ const previousPage = linkIndex > -1 ? allLinks[linkIndex - 1] : null
971
+ const nextPage = linkIndex > -1 ? allLinks[linkIndex + 1] : null
457
972
  if (!nextPage && !previousPage) {
458
- return null;
973
+ return null
459
974
  }
460
- return /* @__PURE__ */ jsxs("dl", { className: "mt-12 flex border-t border-slate-200 pt-6 dark:border-slate-800", children: [
461
- previousPage && /* @__PURE__ */ jsx(PageLink, { dir: "previous", ...previousPage }),
462
- nextPage && /* @__PURE__ */ jsx(PageLink, { className: "ml-auto text-right", ...nextPage })
463
- ] });
975
+ return /* @__PURE__ */ jsxs('dl', {
976
+ className: 'mt-12 flex border-t border-slate-200 pt-6 dark:border-slate-800',
977
+ children: [
978
+ previousPage && /* @__PURE__ */ jsx(PageLink, { dir: 'previous', ...previousPage }),
979
+ nextPage && /* @__PURE__ */ jsx(PageLink, { className: 'ml-auto text-right', ...nextPage }),
980
+ ],
981
+ })
464
982
  }
465
983
  var defaultNavigation = [
466
984
  {
467
- title: "Getting Started",
985
+ title: 'Getting Started',
468
986
  links: [
469
- { title: "Introduction", href: "/" },
470
- { title: "Installation", href: "/installation" }
471
- ]
987
+ { title: 'Introduction', href: '/' },
988
+ { title: 'Installation', href: '/installation' },
989
+ ],
472
990
  },
473
991
  {
474
- title: "Components",
992
+ title: 'Components',
475
993
  links: [
476
- { title: "Button", href: "/components/button" },
477
- { title: "Layout", href: "/components/layout" },
478
- { title: "Navigation", href: "/components/navigation" }
479
- ]
480
- }
481
- ];
994
+ { title: 'Button', href: '/components/button' },
995
+ { title: 'Layout', href: '/components/layout' },
996
+ { title: 'Navigation', href: '/components/navigation' },
997
+ ],
998
+ },
999
+ ]
482
1000
  function usePageHeadings() {
483
- const [headings, setHeadings] = useState([]);
1001
+ const [headings, setHeadings] = useState([])
484
1002
  useEffect(() => {
485
- const result = getHeadings();
486
- setHeadings(result);
487
- }, []);
488
- return headings;
1003
+ const result = getHeadings()
1004
+ setHeadings(result)
1005
+ }, [])
1006
+ return headings
489
1007
  }
490
1008
  function Header({ sitename } = {}) {
491
- const [isScrolled, setIsScrolled] = useState(false);
1009
+ const [isScrolled, setIsScrolled] = useState(false)
492
1010
  useEffect(() => {
493
1011
  function onScroll() {
494
- setIsScrolled(window.scrollY > 0);
1012
+ setIsScrolled(window.scrollY > 0)
495
1013
  }
496
- onScroll();
497
- window.addEventListener("scroll", onScroll, { passive: true });
1014
+ onScroll()
1015
+ window.addEventListener('scroll', onScroll, { passive: true })
498
1016
  return () => {
499
- window.removeEventListener("scroll", onScroll);
500
- };
501
- }, []);
502
- return /* @__PURE__ */ jsxs(
503
- "header",
504
- {
505
- className: clsx(
506
- "sticky top-0 z-50 flex flex-none flex-wrap items-center justify-between bg-white px-4 py-5 shadow-md shadow-slate-900/5 transition duration-500 sm:px-6 lg:px-8 dark:shadow-none",
507
- isScrolled ? "dark:bg-slate-900/95 dark:backdrop-blur-sm dark:[@supports(backdrop-filter:blur(0))]:bg-slate-900/75" : "dark:bg-transparent"
508
- ),
509
- children: [
510
- /* @__PURE__ */ jsx("div", { className: "mr-6 flex lg:hidden" }),
511
- /* @__PURE__ */ jsx("div", { className: "relative flex grow basis-0 items-center", children: /* @__PURE__ */ jsxs(Link3, { href: "/", "aria-label": "Home page", className: "flex items-center justify-between", children: [
512
- /* @__PURE__ */ jsx(Logo, { className: "h-12 w-auto lg:h-14" }),
513
- /* @__PURE__ */ jsx("h2", { className: "text-primary ml-6 text-2xl font-semibold dark:text-white", children: sitename })
514
- ] }) }),
515
- /* @__PURE__ */ jsx("div", { className: "-my-5 mr-6 sm:mr-8 md:mr-0" }),
516
- /* @__PURE__ */ jsxs("div", { className: "relative flex basis-0 justify-end gap-2 sm:gap-4 md:grow", children: [
517
- /* @__PURE__ */ jsx(ThemeSwitcher, {}),
518
- /* @__PURE__ */ jsx(Button, { variant: "outline", size: "icon", className: "h-10 w-10", asChild: true, children: /* @__PURE__ */ jsx(Link3, { href: "https://github.com", className: "group", "aria-label": "GitHub", children: /* @__PURE__ */ jsx(Icons.github, { className: "fill-nsw-grey-600 dark:fill-nsw-grey-100 size-6" }) }) })
519
- ] })
520
- ]
1017
+ window.removeEventListener('scroll', onScroll)
521
1018
  }
522
- );
1019
+ }, [])
1020
+ return /* @__PURE__ */ jsxs('header', {
1021
+ className: clsx2(
1022
+ 'sticky top-0 z-50 flex flex-none flex-wrap items-center justify-between bg-white px-4 py-5 shadow-md shadow-slate-900/5 transition duration-500 sm:px-6 lg:px-8 dark:shadow-none',
1023
+ isScrolled
1024
+ ? 'dark:bg-slate-900/95 dark:backdrop-blur-sm dark:[@supports(backdrop-filter:blur(0))]:bg-slate-900/75'
1025
+ : 'dark:bg-transparent',
1026
+ ),
1027
+ children: [
1028
+ /* @__PURE__ */ jsx('div', { className: 'mr-6 flex lg:hidden' }),
1029
+ /* @__PURE__ */ jsx('div', {
1030
+ className: 'relative flex grow basis-0 items-center',
1031
+ children: /* @__PURE__ */ jsxs(Link3, {
1032
+ href: '/',
1033
+ 'aria-label': 'Home page',
1034
+ className: 'flex items-center justify-between',
1035
+ children: [
1036
+ /* @__PURE__ */ jsx(Logo, { className: 'h-12 w-auto lg:h-14' }),
1037
+ /* @__PURE__ */ jsx('h2', {
1038
+ className: 'text-primary ml-6 text-2xl font-semibold dark:text-white',
1039
+ children: sitename,
1040
+ }),
1041
+ ],
1042
+ }),
1043
+ }),
1044
+ /* @__PURE__ */ jsx('div', { className: '-my-5 mr-6 sm:mr-8 md:mr-0' }),
1045
+ /* @__PURE__ */ jsxs('div', {
1046
+ className: 'relative flex basis-0 justify-end gap-2 sm:gap-4 md:grow',
1047
+ children: [
1048
+ /* @__PURE__ */ jsx(ThemeSwitcher, {}),
1049
+ /* @__PURE__ */ jsx(Button, {
1050
+ variant: 'outline',
1051
+ size: 'icon',
1052
+ className: 'h-10 w-10',
1053
+ asChild: true,
1054
+ children: /* @__PURE__ */ jsx(Link3, {
1055
+ href: 'https://github.com',
1056
+ className: 'group',
1057
+ 'aria-label': 'GitHub',
1058
+ children: /* @__PURE__ */ jsx(Icons.github, {
1059
+ className: 'fill-nsw-grey-600 dark:fill-nsw-grey-100 size-6',
1060
+ }),
1061
+ }),
1062
+ }),
1063
+ ],
1064
+ }),
1065
+ ],
1066
+ })
523
1067
  }
524
1068
  function Layout({ children, sitename, navigation = defaultNavigation }) {
525
- const pathname = usePathname();
526
- const isHomePage = pathname === "/";
527
- const tableOfContents = usePageHeadings();
528
- return /* @__PURE__ */ jsxs("div", { className: "flex w-full flex-col", children: [
529
- /* @__PURE__ */ jsx(Masthead, {}),
530
- /* @__PURE__ */ jsx(Header, { sitename }),
531
- isHomePage && /* @__PURE__ */ jsx(Fragment, {}),
532
- /* @__PURE__ */ jsxs("div", { className: "max-w-8xl relative mx-auto flex w-full flex-auto justify-center sm:px-2 lg:px-8 xl:px-12", children: [
533
- /* @__PURE__ */ jsxs("div", { className: "hidden lg:relative lg:block lg:flex-none", children: [
534
- /* @__PURE__ */ jsx("div", { className: "bg-nsw-grey-50 absolute inset-y-0 right-0 w-[50vw] dark:hidden" }),
535
- /* @__PURE__ */ jsx("div", { className: "from-nsw-grey-600 absolute top-16 right-0 bottom-0 hidden h-12 w-px bg-linear-to-t dark:block" }),
536
- /* @__PURE__ */ jsx("div", { className: "bg-nsw-grey-600 absolute top-28 right-0 bottom-0 hidden w-px dark:block" }),
537
- /* @__PURE__ */ jsx("div", { className: "sticky top-[4.75rem] -ml-0.5 h-[calc(100vh-4.75rem)] w-64 overflow-x-hidden overflow-y-auto py-16 pr-8 pl-0.5 xl:w-72 xl:pr-16", children: /* @__PURE__ */ jsx(Navigation, { navigation }) })
538
- ] }),
539
- /* @__PURE__ */ jsxs("div", { className: "flex flex-1 flex-col", children: [
540
- /* @__PURE__ */ jsxs("div", { className: "flex flex-1", children: [
541
- /* @__PURE__ */ jsxs("div", { className: "max-w-2xl min-w-0 flex-auto px-4 py-16 lg:max-w-none lg:pr-0 lg:pl-8 xl:px-16", children: [
542
- /* @__PURE__ */ jsx("article", { children }),
543
- /* @__PURE__ */ jsx(PrevNextLinks, { navigation })
544
- ] }),
545
- /* @__PURE__ */ jsx(TableOfContents, { tableOfContents })
546
- ] }),
547
- /* @__PURE__ */ jsx(Footer, {})
548
- ] })
549
- ] })
550
- ] });
551
- }
552
- function cn(...inputs) {
553
- return twMerge(clsx$1(inputs));
554
- }
555
- function truncate(text, maxLength) {
556
- if (text.length <= maxLength) {
557
- return text;
558
- }
559
- return text.slice(0, maxLength) + "...";
560
- }
561
- function kebabCase(str) {
562
- return str.replace(/([a-z])([A-Z])/g, "$1-$2").replace(/[\s_]+/g, "-").toLowerCase();
563
- }
564
- function camelCase(str) {
565
- return str.toLowerCase().replace(/[^a-zA-Z0-9]+(.)/g, (_, chr) => chr.toUpperCase());
1069
+ const pathname = usePathname()
1070
+ const isHomePage = pathname === '/'
1071
+ const tableOfContents = usePageHeadings()
1072
+ return /* @__PURE__ */ jsxs('div', {
1073
+ className: 'flex w-full flex-col',
1074
+ children: [
1075
+ /* @__PURE__ */ jsx(Masthead, {}),
1076
+ /* @__PURE__ */ jsx(Header, { sitename }),
1077
+ isHomePage && /* @__PURE__ */ jsx(Fragment, {}),
1078
+ /* @__PURE__ */ jsxs('div', {
1079
+ className:
1080
+ 'max-w-8xl relative mx-auto flex w-full flex-auto justify-center sm:px-2 lg:px-8 xl:px-12',
1081
+ children: [
1082
+ /* @__PURE__ */ jsxs('div', {
1083
+ className: 'hidden lg:relative lg:block lg:flex-none',
1084
+ children: [
1085
+ /* @__PURE__ */ jsx('div', {
1086
+ className: 'bg-nsw-grey-50 absolute inset-y-0 right-0 w-[50vw] dark:hidden',
1087
+ }),
1088
+ /* @__PURE__ */ jsx('div', {
1089
+ className:
1090
+ 'from-nsw-grey-600 absolute top-16 right-0 bottom-0 hidden h-12 w-px bg-linear-to-t dark:block',
1091
+ }),
1092
+ /* @__PURE__ */ jsx('div', {
1093
+ className:
1094
+ 'bg-nsw-grey-600 absolute top-28 right-0 bottom-0 hidden w-px dark:block',
1095
+ }),
1096
+ /* @__PURE__ */ jsx('div', {
1097
+ className:
1098
+ 'sticky top-[4.75rem] -ml-0.5 h-[calc(100vh-4.75rem)] w-64 overflow-x-hidden overflow-y-auto py-16 pr-8 pl-0.5 xl:w-72 xl:pr-16',
1099
+ children: /* @__PURE__ */ jsx(Navigation, { navigation }),
1100
+ }),
1101
+ ],
1102
+ }),
1103
+ /* @__PURE__ */ jsxs('div', {
1104
+ className: 'flex flex-1 flex-col',
1105
+ children: [
1106
+ /* @__PURE__ */ jsxs('div', {
1107
+ className: 'flex flex-1',
1108
+ children: [
1109
+ /* @__PURE__ */ jsxs('div', {
1110
+ className:
1111
+ 'max-w-2xl min-w-0 flex-auto px-4 py-16 lg:max-w-none lg:pr-0 lg:pl-8 xl:px-16',
1112
+ children: [
1113
+ /* @__PURE__ */ jsx('article', { children }),
1114
+ /* @__PURE__ */ jsx(PrevNextLinks, { navigation }),
1115
+ ],
1116
+ }),
1117
+ /* @__PURE__ */ jsx(TableOfContents, { tableOfContents }),
1118
+ ],
1119
+ }),
1120
+ /* @__PURE__ */ jsx(Footer, {}),
1121
+ ],
1122
+ }),
1123
+ ],
1124
+ }),
1125
+ ],
1126
+ })
566
1127
  }
567
1128
 
568
- export { Button, DynamicFavicon, Footer, Icons, Layout, Logo, Masthead, Navigation, PrevNextLinks, TableOfContents, ThemeSwitcher, camelCase, cn, defaultNavigation, domToSimple, getHeadings, getNodeText, kebabCase, truncate };
1129
+ export {
1130
+ Button,
1131
+ DynamicFavicon,
1132
+ Footer,
1133
+ Icons,
1134
+ Layout,
1135
+ Logo,
1136
+ Masthead,
1137
+ Navigation,
1138
+ PrevNextLinks,
1139
+ TableOfContents,
1140
+ ThemeSwitcher,
1141
+ camelCase,
1142
+ cn,
1143
+ defaultNavigation,
1144
+ domToSimple,
1145
+ getHeadings,
1146
+ getNodeText,
1147
+ kebabCase,
1148
+ truncate,
1149
+ }
1150
+ //# sourceMappingURL=index.js.map
569
1151
  //# sourceMappingURL=index.js.map
570
- //# sourceMappingURL=index.js.map