@nswds/app 0.1.12 → 0.1.14

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,13 +1,13 @@
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, ThemeProvider as ThemeProvider$1 } 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 { 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, ThemeProvider as ThemeProvider$1 } from 'next-themes';
10
+ import { twMerge } from 'tailwind-merge';
11
11
 
12
12
  // src/components/Button.tsx
13
13
  var buttonVariants = cva(
@@ -15,1118 +15,563 @@ var buttonVariants = cva(
15
15
  {
16
16
  variants: {
17
17
  variant: {
18
- default:
19
- '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',
20
- destructive:
21
- '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',
22
- outline:
23
- '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',
24
- secondary:
25
- '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',
26
- ghost:
27
- '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',
28
- link: 'text-zinc-900 underline-offset-4 hover:underline dark:text-zinc-50',
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"
29
24
  },
30
25
  size: {
31
- default: 'h-9 px-4 py-2 has-[>svg]:px-3',
32
- sm: 'h-8 rounded-md gap-1.5 px-3 has-[>svg]:px-2.5',
33
- lg: 'h-10 rounded-md px-6 has-[>svg]:px-4',
34
- icon: 'size-9',
35
- },
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
+ }
36
31
  },
37
32
  defaultVariants: {
38
- variant: 'default',
39
- size: 'default',
40
- },
41
- },
42
- )
43
- function Button({ className, variant, size, asChild = false, ...props }) {
44
- const Comp = asChild ? Slot : 'button'
45
- return /* @__PURE__ */ jsx(Comp, {
46
- 'data-slot': 'button',
47
- className: cn(buttonVariants({ variant, size, className })),
48
- ...props,
49
- })
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
+ );
50
54
  }
51
55
  function DynamicFavicon({ lightModeFavicon, darkModeFavicon }) {
52
56
  useEffect(() => {
53
57
  const updateFavicon = () => {
54
- const isDarkMode = window.matchMedia('(prefers-color-scheme: dark)').matches
55
- const favicon = document.querySelector("link[rel='icon']")
58
+ const isDarkMode = window.matchMedia("(prefers-color-scheme: dark)").matches;
59
+ const favicon = document.querySelector("link[rel='icon']");
56
60
  if (favicon) {
57
- favicon.href = isDarkMode ? darkModeFavicon : lightModeFavicon
61
+ favicon.href = isDarkMode ? darkModeFavicon : lightModeFavicon;
58
62
  } else {
59
- const newFavicon = document.createElement('link')
60
- newFavicon.rel = 'icon'
61
- newFavicon.href = isDarkMode ? darkModeFavicon : lightModeFavicon
62
- document.head.appendChild(newFavicon)
63
+ const newFavicon = document.createElement("link");
64
+ newFavicon.rel = "icon";
65
+ newFavicon.href = isDarkMode ? darkModeFavicon : lightModeFavicon;
66
+ document.head.appendChild(newFavicon);
63
67
  }
64
- }
65
- updateFavicon()
66
- const mediaQuery = window.matchMedia('(prefers-color-scheme: dark)')
67
- mediaQuery.addEventListener('change', updateFavicon)
68
- return () => mediaQuery.removeEventListener('change', updateFavicon)
69
- }, [lightModeFavicon, darkModeFavicon])
70
- return null
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;
71
75
  }
72
76
  var Icons = {
73
- logo: (props) =>
74
- /* @__PURE__ */ jsxs('svg', {
75
- viewBox: '0 0 259 280',
76
- 'aria-hidden': 'true',
77
- ...props,
78
- children: [
79
- /* @__PURE__ */ jsx('path', {
80
- fillRule: 'evenodd',
81
- clipRule: 'evenodd',
82
- 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',
83
- className: 'fill-nsw-blue-800 dark:fill-white',
84
- }),
85
- /* @__PURE__ */ jsx('path', {
86
- fillRule: 'evenodd',
87
- clipRule: 'evenodd',
88
- 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',
89
- className: 'fill-nsw-blue-800 dark:fill-white',
90
- }),
91
- /* @__PURE__ */ jsx('path', {
92
- 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',
93
- className: 'fill-nsw-red-600 dark:fill-white',
94
- }),
95
- /* @__PURE__ */ jsx('path', {
96
- 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',
97
- className: 'fill-nsw-red-600 dark:fill-white',
98
- }),
99
- ],
100
- }),
101
- github: (props) =>
102
- /* @__PURE__ */ jsx('svg', {
103
- fill: 'currentColor',
104
- viewBox: '0 0 17 17',
105
- ...props,
106
- children: /* @__PURE__ */ jsx('g', {
107
- clipPath: 'url(#a)',
108
- children: /* @__PURE__ */ jsx('path', {
109
- fillRule: 'evenodd',
110
- 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',
111
- clipRule: 'evenodd',
112
- }),
113
- }),
114
- }),
115
- linkedin: (props) =>
116
- /* @__PURE__ */ jsx('svg', {
117
- fill: 'currentColor',
118
- viewBox: '0 0 17 17',
119
- ...props,
120
- children: /* @__PURE__ */ jsx('g', {
121
- clipPath: 'url(#a)',
122
- children: /* @__PURE__ */ jsx('path', {
123
- fill: 'currentColor',
124
- 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',
125
- }),
126
- }),
127
- }),
128
- twitter: (props) =>
129
- /* @__PURE__ */ jsx('svg', {
130
- fill: 'currentColor',
131
- viewBox: '0 0 17 17',
132
- ...props,
133
- children: /* @__PURE__ */ jsx('g', {
134
- clipPath: 'url(#a)',
135
- children: /* @__PURE__ */ jsx('path', {
136
- fill: 'currentColor',
137
- 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',
138
- }),
139
- }),
140
- }),
141
- youtube: (props) =>
142
- /* @__PURE__ */ jsx('svg', {
143
- fill: 'currentColor',
144
- viewBox: '0 0 17 17',
145
- ...props,
146
- children: /* @__PURE__ */ jsx('g', {
147
- clipPath: 'url(#a)',
148
- children: /* @__PURE__ */ jsx('path', {
149
- fill: 'currentColor',
150
- 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',
151
- }),
152
- }),
153
- }),
154
- account_circle: (props) =>
155
- /* @__PURE__ */ jsx('svg', {
156
- fill: 'currentColor',
157
- viewBox: '0 -960 960 960',
158
- ...props,
159
- children: /* @__PURE__ */ jsx('path', {
160
- 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',
161
- }),
162
- }),
163
- attach_file: (props) =>
164
- /* @__PURE__ */ jsx('svg', {
165
- fill: 'currentColor',
166
- viewBox: '0 -960 960 960',
167
- ...props,
168
- children: /* @__PURE__ */ jsx('path', {
169
- 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',
170
- }),
171
- }),
172
- cancel: (props) =>
173
- /* @__PURE__ */ jsx('svg', {
174
- fill: 'currentColor',
175
- viewBox: '0 -960 960 960',
176
- ...props,
177
- children: /* @__PURE__ */ jsx('path', {
178
- 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',
179
- }),
180
- }),
181
- check_circle: (props) =>
182
- /* @__PURE__ */ jsx('svg', {
183
- fill: 'currentColor',
184
- viewBox: '0 -960 960 960',
185
- ...props,
186
- children: /* @__PURE__ */ jsx('path', {
187
- 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',
188
- }),
189
- }),
190
- check: (props) =>
191
- /* @__PURE__ */ jsx('svg', {
192
- fill: 'currentColor',
193
- viewBox: '0 -960 960 960',
194
- ...props,
195
- children: /* @__PURE__ */ jsx('path', {
196
- 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',
197
- }),
198
- }),
199
- chevron_down: (props) =>
200
- /* @__PURE__ */ jsx('svg', {
201
- fill: 'currentColor',
202
- viewBox: '0 -960 960 960',
203
- ...props,
204
- children: /* @__PURE__ */ jsx('path', {
205
- 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',
206
- }),
207
- }),
208
- chevron_left: (props) =>
209
- /* @__PURE__ */ jsx('svg', {
210
- fill: 'currentColor',
211
- viewBox: '0 -960 960 960',
212
- ...props,
213
- children: /* @__PURE__ */ jsx('path', {
214
- 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',
215
- }),
216
- }),
217
- chevron_right: (props) =>
218
- /* @__PURE__ */ jsx('svg', {
219
- fill: 'currentColor',
220
- viewBox: '0 -960 960 960',
221
- ...props,
222
- children: /* @__PURE__ */ jsx('path', {
223
- 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',
224
- }),
225
- }),
226
- chevron_up: (props) =>
227
- /* @__PURE__ */ jsx('svg', {
228
- fill: 'currentColor',
229
- viewBox: '0 -960 960 960',
230
- ...props,
231
- children: /* @__PURE__ */ jsx('path', {
232
- 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',
233
- }),
234
- }),
235
- close: (props) =>
236
- /* @__PURE__ */ jsx('svg', {
237
- fill: 'currentColor',
238
- viewBox: '0 -960 960 960',
239
- ...props,
240
- children: /* @__PURE__ */ jsx('path', {
241
- 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',
242
- }),
243
- }),
244
- collapse_all: (props) =>
245
- /* @__PURE__ */ jsx('svg', {
246
- fill: 'currentColor',
247
- viewBox: '0 -960 960 960',
248
- ...props,
249
- children: /* @__PURE__ */ jsx('path', {
250
- 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',
251
- }),
252
- }),
253
- computer: (props) =>
254
- /* @__PURE__ */ jsx('svg', {
255
- fill: 'currentColor',
256
- viewBox: '0 -960 960 960',
257
- ...props,
258
- children: /* @__PURE__ */ jsx('path', {
259
- 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',
260
- }),
261
- }),
262
- copy: (props) =>
263
- /* @__PURE__ */ jsx('svg', {
264
- fill: 'currentColor',
265
- viewBox: '0 -960 960 960',
266
- ...props,
267
- children: /* @__PURE__ */ jsx('path', {
268
- 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',
269
- }),
270
- }),
271
- dark_mode: (props) =>
272
- /* @__PURE__ */ jsx('svg', {
273
- fill: 'currentColor',
274
- viewBox: '0 -960 960 960',
275
- ...props,
276
- children: /* @__PURE__ */ jsx('path', {
277
- 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',
278
- }),
279
- }),
280
- dock_to_left: (props) =>
281
- /* @__PURE__ */ jsx('svg', {
282
- fill: 'currentColor',
283
- viewBox: '0 -960 960 960',
284
- ...props,
285
- children: /* @__PURE__ */ jsx('path', {
286
- 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',
287
- }),
288
- }),
289
- dock_to_right: (props) =>
290
- /* @__PURE__ */ jsx('svg', {
291
- fill: 'currentColor',
292
- viewBox: '0 -960 960 960',
293
- ...props,
294
- children: /* @__PURE__ */ jsx('path', {
295
- 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',
296
- }),
297
- }),
298
- delete: (props) =>
299
- /* @__PURE__ */ jsx('svg', {
300
- fill: 'currentColor',
301
- viewBox: '0 -960 960 960',
302
- ...props,
303
- children: /* @__PURE__ */ jsx('path', {
304
- 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',
305
- }),
306
- }),
307
- desktop: (props) =>
308
- /* @__PURE__ */ jsx('svg', {
309
- fill: 'currentColor',
310
- viewBox: '0 -960 960 960',
311
- ...props,
312
- children: /* @__PURE__ */ jsx('path', {
313
- 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',
314
- }),
315
- }),
316
- display_settings: (props) =>
317
- /* @__PURE__ */ jsx('svg', {
318
- fill: 'currentColor',
319
- viewBox: '0 -960 960 960',
320
- ...props,
321
- children: /* @__PURE__ */ jsx('path', {
322
- 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',
323
- }),
324
- }),
325
- double_arrow_left: (props) =>
326
- /* @__PURE__ */ jsx('svg', {
327
- fill: 'currentColor',
328
- viewBox: '0 -960 960 960',
329
- ...props,
330
- children: /* @__PURE__ */ jsx('path', {
331
- 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',
332
- }),
333
- }),
334
- double_arrow_right: (props) =>
335
- /* @__PURE__ */ jsx('svg', {
336
- fill: 'currentColor',
337
- viewBox: '0 -960 960 960',
338
- ...props,
339
- children: /* @__PURE__ */ jsx('path', {
340
- 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',
341
- }),
342
- }),
343
- download: (props) =>
344
- /* @__PURE__ */ jsx('svg', {
345
- fill: 'currentColor',
346
- viewBox: '0 -960 960 960',
347
- ...props,
348
- children: /* @__PURE__ */ jsx('path', {
349
- 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',
350
- }),
351
- }),
352
- east: (props) =>
353
- /* @__PURE__ */ jsx('svg', {
354
- fill: 'currentColor',
355
- viewBox: '0 -960 960 960',
356
- ...props,
357
- children: /* @__PURE__ */ jsx('path', {
358
- 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',
359
- }),
360
- }),
361
- error: (props) =>
362
- /* @__PURE__ */ jsx('svg', {
363
- fill: 'currentColor',
364
- viewBox: '0 -960 960 960',
365
- ...props,
366
- children: /* @__PURE__ */ jsx('path', {
367
- 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',
368
- }),
369
- }),
370
- exclamation: (props) =>
371
- /* @__PURE__ */ jsx('svg', {
372
- fill: 'currentColor',
373
- viewBox: '0 -960 960 960',
374
- ...props,
375
- children: /* @__PURE__ */ jsx('path', {
376
- 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',
377
- }),
378
- }),
379
- help: (props) =>
380
- /* @__PURE__ */ jsx('svg', {
381
- fill: 'currentColor',
382
- viewBox: '0 -960 960 960',
383
- ...props,
384
- children: /* @__PURE__ */ jsx('path', {
385
- 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',
386
- }),
387
- }),
388
- info: (props) =>
389
- /* @__PURE__ */ jsx('svg', {
390
- fill: 'currentColor',
391
- viewBox: '0 -960 960 960',
392
- ...props,
393
- children: /* @__PURE__ */ jsx('path', {
394
- 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',
395
- }),
396
- }),
397
- light_mode: (props) =>
398
- /* @__PURE__ */ jsx('svg', {
399
- fill: 'currentColor',
400
- viewBox: '0 -960 960 960',
401
- ...props,
402
- children: /* @__PURE__ */ jsx('path', {
403
- 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',
404
- }),
405
- }),
406
- link: (props) =>
407
- /* @__PURE__ */ jsx('svg', {
408
- fill: 'currentColor',
409
- viewBox: '0 -960 960 960',
410
- ...props,
411
- children: /* @__PURE__ */ jsx('path', {
412
- 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',
413
- }),
414
- }),
415
- login: (props) =>
416
- /* @__PURE__ */ jsx('svg', {
417
- fill: 'currentColor',
418
- viewBox: '0 -960 960 960',
419
- ...props,
420
- children: /* @__PURE__ */ jsx('path', {
421
- 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',
422
- }),
423
- }),
424
- logout: (props) =>
425
- /* @__PURE__ */ jsx('svg', {
426
- fill: 'currentColor',
427
- viewBox: '0 -960 960 960',
428
- ...props,
429
- children: /* @__PURE__ */ jsx('path', {
430
- 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',
431
- }),
432
- }),
433
- menu: (props) =>
434
- /* @__PURE__ */ jsx('svg', {
435
- fill: 'currentColor',
436
- viewBox: '0 -960 960 960',
437
- ...props,
438
- children: /* @__PURE__ */ jsx('path', {
439
- 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',
440
- }),
441
- }),
442
- more_horiz: (props) =>
443
- /* @__PURE__ */ jsx('svg', {
444
- fill: 'currentColor',
445
- viewBox: '0 -960 960 960',
446
- ...props,
447
- children: /* @__PURE__ */ jsx('path', {
448
- 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',
449
- }),
450
- }),
451
- more_vert: (props) =>
452
- /* @__PURE__ */ jsx('svg', {
453
- fill: 'currentColor',
454
- viewBox: '0 -960 960 960',
455
- ...props,
456
- children: /* @__PURE__ */ jsx('path', {
457
- 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',
458
- }),
459
- }),
460
- north: (props) =>
461
- /* @__PURE__ */ jsx('svg', {
462
- fill: 'currentColor',
463
- viewBox: '0 -960 960 960',
464
- ...props,
465
- children: /* @__PURE__ */ jsx('path', {
466
- 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',
467
- }),
468
- }),
469
- open_in_new: (props) =>
470
- /* @__PURE__ */ jsx('svg', {
471
- fill: 'currentColor',
472
- viewBox: '0 -960 960 960',
473
- ...props,
474
- children: /* @__PURE__ */ jsx('path', {
475
- 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',
476
- }),
477
- }),
478
- print: (props) =>
479
- /* @__PURE__ */ jsx('svg', {
480
- fill: 'currentColor',
481
- viewBox: '0 -960 960 960',
482
- ...props,
483
- children: /* @__PURE__ */ jsx('path', {
484
- 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',
485
- }),
486
- }),
487
- progress_activity: (props) =>
488
- /* @__PURE__ */ jsx('svg', {
489
- fill: 'currentColor',
490
- viewBox: '0 -960 960 960',
491
- ...props,
492
- children: /* @__PURE__ */ jsx('path', {
493
- 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',
494
- }),
495
- }),
496
- remove: (props) =>
497
- /* @__PURE__ */ jsx('svg', {
498
- fill: 'currentColor',
499
- viewBox: '0 -960 960 960',
500
- ...props,
501
- children: /* @__PURE__ */ jsx('path', {
502
- 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',
503
- }),
504
- }),
505
- search: (props) =>
506
- /* @__PURE__ */ jsx('svg', {
507
- fill: 'currentColor',
508
- viewBox: '0 -960 960 960',
509
- ...props,
510
- children: /* @__PURE__ */ jsx('path', {
511
- 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',
512
- }),
513
- }),
514
- settings_brightness: (props) =>
515
- /* @__PURE__ */ jsx('svg', {
516
- fill: 'currentColor',
517
- viewBox: '0 -960 960 960',
518
- ...props,
519
- children: /* @__PURE__ */ jsx('path', {
520
- 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',
521
- }),
522
- }),
523
- share: (props) =>
524
- /* @__PURE__ */ jsx('svg', {
525
- fill: 'currentColor',
526
- viewBox: '0 -960 960 960',
527
- ...props,
528
- children: /* @__PURE__ */ jsx('path', {
529
- 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',
530
- }),
531
- }),
532
- side_navigation: (props) =>
533
- /* @__PURE__ */ jsx('svg', {
534
- fill: 'currentColor',
535
- viewBox: '0 -960 960 960',
536
- ...props,
537
- children: /* @__PURE__ */ jsx('path', {
538
- 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',
539
- }),
540
- }),
541
- south: (props) =>
542
- /* @__PURE__ */ jsx('svg', {
543
- fill: 'currentColor',
544
- viewBox: '0 -960 960 960',
545
- ...props,
546
- children: /* @__PURE__ */ jsx('path', {
547
- 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',
548
- }),
549
- }),
550
- unfold_less: (props) =>
551
- /* @__PURE__ */ jsx('svg', {
552
- fill: 'currentColor',
553
- viewBox: '0 -960 960 960',
554
- ...props,
555
- children: /* @__PURE__ */ jsx('path', {
556
- 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',
557
- }),
558
- }),
559
- unfold_more: (props) =>
560
- /* @__PURE__ */ jsx('svg', {
561
- fill: 'currentColor',
562
- viewBox: '0 -960 960 960',
563
- ...props,
564
- children: /* @__PURE__ */ jsx('path', {
565
- 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',
566
- }),
567
- }),
568
- upload: (props) =>
569
- /* @__PURE__ */ jsx('svg', {
570
- fill: 'currentColor',
571
- viewBox: '0 -960 960 960',
572
- ...props,
573
- children: /* @__PURE__ */ jsx('path', {
574
- 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',
575
- }),
576
- }),
577
- west: (props) =>
578
- /* @__PURE__ */ jsx('svg', {
579
- fill: 'currentColor',
580
- viewBox: '0 -960 960 960',
581
- ...props,
582
- children: /* @__PURE__ */ jsx('path', {
583
- 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',
584
- }),
585
- }),
586
- }
587
- function SocialLink({ href, icon: Icon, children }) {
588
- return /* @__PURE__ */ jsxs(Link3, {
589
- href,
590
- className: 'group',
591
- children: [
592
- /* @__PURE__ */ jsx('span', { className: 'sr-only', children }),
593
- /* @__PURE__ */ jsx(Icon, {
594
- className:
595
- 'h-5 w-5 fill-zinc-700 transition group-hover:fill-zinc-900 dark:group-hover:fill-zinc-500',
596
- }),
597
- ],
598
- })
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
+ ] });
599
198
  }
600
199
  function SmallPrint() {
601
- return /* @__PURE__ */ jsxs('div', {
602
- className:
603
- 'flex flex-col items-center justify-between gap-5 border-t border-zinc-900/5 pt-8 sm:flex-row dark:border-white/5',
604
- children: [
605
- /* @__PURE__ */ jsxs('p', {
606
- className: 'text-xs text-zinc-600 dark:text-zinc-400',
607
- children: [
608
- '\xA9 Copyright ',
609
- /* @__PURE__ */ new Date().getFullYear(),
610
- '. All rights reserved.',
611
- ],
612
- }),
613
- /* @__PURE__ */ jsx('div', {
614
- className: 'flex gap-4',
615
- children: /* @__PURE__ */ jsx(SocialLink, {
616
- href: '#',
617
- icon: Icons.github,
618
- children: 'Follow us on GitHub',
619
- }),
620
- }),
621
- ],
622
- })
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
+ ] });
623
208
  }
624
209
  function Footer() {
625
- return /* @__PURE__ */ jsx('footer', {
626
- className: 'mx-auto w-full max-w-2xl space-y-10 pb-16 lg:max-w-5xl',
627
- children: /* @__PURE__ */ jsx(SmallPrint, {}),
628
- })
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, {}) });
629
211
  }
630
212
  function getNodeText(node) {
631
- let text = ''
213
+ let text = "";
632
214
  for (const child of node.children ?? []) {
633
- if ('type' in child && child.type === 'text') {
634
- text += child.attributes?.content ?? ''
215
+ if ("type" in child && child.type === "text") {
216
+ text += child.attributes?.content ?? "";
635
217
  } else if (child instanceof HTMLElement) {
636
- text += getNodeText(child)
218
+ text += getNodeText(child);
637
219
  }
638
220
  }
639
- return text
221
+ return text;
640
222
  }
641
223
  function domToSimple(node) {
642
224
  if (node.nodeType === Node.TEXT_NODE) {
643
225
  return {
644
- type: 'text',
226
+ type: "text",
645
227
  attributes: {
646
- content: node.textContent ?? void 0,
647
- },
648
- }
228
+ content: node.textContent ?? void 0
229
+ }
230
+ };
649
231
  }
650
232
  if (node.nodeType === Node.ELEMENT_NODE) {
651
233
  return {
652
234
  type: node.nodeName.toLowerCase(),
653
235
  attributes: {},
654
- children: Array.from(node.childNodes).map(domToSimple),
655
- }
236
+ children: Array.from(node.childNodes).map(domToSimple)
237
+ };
656
238
  }
657
- throw new Error('Unsupported node type')
239
+ throw new Error("Unsupported node type");
658
240
  }
659
241
  function getHeadings(slugify = slugifyWithCounter()) {
660
- const content = document.querySelector('article')
242
+ const content = document.querySelector("article");
661
243
  if (!content) {
662
- return []
244
+ return [];
663
245
  }
664
- const headings = Array.from(content.querySelectorAll('h2, h3, h4, h5, h6'))
665
- const result = []
666
- const stack = []
246
+ const headings = Array.from(content.querySelectorAll("h2, h3, h4, h5, h6"));
247
+ const result = [];
248
+ const stack = [];
667
249
  headings.forEach((el) => {
668
- const simplifiedNode = domToSimple(el)
669
- const title = getNodeText(simplifiedNode).trim()
670
- const slugifiedTitle = slugify(title)
671
- const id = el.id || slugifiedTitle
672
- const level = parseInt(el.tagName[1])
673
- const node = { level, id, title, children: [] }
674
- if (!el.id) el.id = id
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;
675
257
  if (level === 2) {
676
- result.push(node)
677
- stack.length = 0
678
- stack.push(node)
258
+ result.push(node);
259
+ stack.length = 0;
260
+ stack.push(node);
679
261
  } else {
680
262
  while (stack.length && stack[stack.length - 1].level >= level) {
681
- stack.pop()
263
+ stack.pop();
682
264
  }
683
265
  if (stack.length) {
684
- stack[stack.length - 1].children.push(node)
266
+ stack[stack.length - 1].children.push(node);
685
267
  }
686
- stack.push(node)
268
+ stack.push(node);
687
269
  }
688
- })
689
- return result
270
+ });
271
+ return result;
690
272
  }
691
273
  function Masthead() {
692
- return /* @__PURE__ */ jsx('div', {
693
- className: 'bg-primary h-[var(--masthead-height)] w-full',
694
- children: /* @__PURE__ */ jsx('div', {
695
- className: 'mx-auto flex w-full items-center justify-between px-4 py-2 sm:px-6 lg:px-8',
696
- children: /* @__PURE__ */ jsx('div', {
697
- className: 'flex items-center gap-x-12',
698
- children: /* @__PURE__ */ jsx('p', {
699
- className: 'text-xs text-white',
700
- children: 'A NSW Government website',
701
- }),
702
- }),
703
- }),
704
- })
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" }) }) }) });
705
275
  }
706
276
  function Logo(props) {
707
- return /* @__PURE__ */ jsxs(Fragment, {
708
- children: [
709
- /* @__PURE__ */ jsx('span', { className: 'sr-only', children: 'NSW Government' }),
710
- /* @__PURE__ */ jsx(Icons.logo, { ...props }),
711
- ],
712
- })
277
+ return /* @__PURE__ */ jsxs(Fragment, { children: [
278
+ /* @__PURE__ */ jsx("span", { className: "sr-only", children: "NSW Government" }),
279
+ /* @__PURE__ */ jsx(Icons.logo, { ...props })
280
+ ] });
713
281
  }
714
- function Navigation({ className, onLinkClick, navigation }) {
715
- const pathname = usePathname()
716
- return /* @__PURE__ */ jsx('nav', {
717
- className: clsx('text-base lg:text-sm', className),
718
- children: /* @__PURE__ */ jsx('ul', {
719
- role: 'list',
720
- className: 'flex flex-col gap-9',
721
- children: navigation.map((section) =>
722
- /* @__PURE__ */ jsxs(
723
- 'li',
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,
724
297
  {
725
- children: [
726
- /* @__PURE__ */ jsx('h2', {
727
- className: 'font-display text-foreground font-medium dark:text-white',
728
- children: section.title,
729
- }),
730
- /* @__PURE__ */ jsx('ul', {
731
- role: 'list',
732
- className:
733
- 'border-nsw-grey-400 dark:border-nsw-grey-200/15 mt-2 flex flex-col gap-2 border-l lg:mt-4',
734
- children: section.links.map((link) =>
735
- /* @__PURE__ */ jsx(
736
- 'li',
737
- {
738
- className: '-ml-px flex flex-col items-start gap-2',
739
- children: /* @__PURE__ */ jsx(Link3, {
740
- href: link.href,
741
- onClick: onLinkClick,
742
- className: clsx(
743
- 'text-foreground inline-block border-l pl-5 text-base/8 sm:pl-4 sm:text-sm/6',
744
- 'hover:border-nsw-grey-950 hover:text-nsw-gray-950 hover:font-semibold',
745
- 'dark:text-nsw-grey-400',
746
- 'dark:hover:border-nsw-grey-400 dark:hover:text-white',
747
- link.href === pathname &&
748
- 'border-primary text-primary border-l font-semibold dark:border-white',
749
- ),
750
- children: link.title,
751
- }),
752
- },
753
- link.href,
754
- ),
755
- ),
756
- }),
757
- ],
758
- },
759
- section.title,
760
- ),
761
- ),
762
- }),
763
- })
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)) }) });
764
313
  }
765
314
  function ThemeSwitcher() {
766
- const { resolvedTheme, setTheme } = useTheme()
767
- const [mounted, setMounted] = useState(false)
768
- const classes = 'fill-nsw-grey-600 dark:fill-nsw-grey-100 size-6'
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";
769
318
  useEffect(() => {
770
- setMounted(true)
771
- }, [])
319
+ setMounted(true);
320
+ }, []);
772
321
  if (!mounted) {
773
- return /* @__PURE__ */ jsx(Button, {
774
- variant: 'ghost',
775
- size: 'icon',
776
- className: 'h-10 w-10',
777
- disabled: true,
778
- children: /* @__PURE__ */ jsx(Icons.light_mode, { className: classes }),
779
- })
322
+ return /* @__PURE__ */ jsx(Button, { variant: "ghost", size: "icon", className: "h-10 w-10", disabled: true, children: /* @__PURE__ */ jsx(Icons.light_mode, { className: classes }) });
780
323
  }
781
- return /* @__PURE__ */ jsxs(Button, {
782
- variant: 'outline',
783
- size: 'icon',
784
- className: 'h-10 w-10 cursor-pointer',
785
- onClick: () => setTheme(resolvedTheme === 'dark' ? 'light' : 'dark'),
786
- 'aria-label': `Switch to ${resolvedTheme === 'dark' ? 'light' : 'dark'} theme`,
787
- children: [
788
- resolvedTheme === 'dark'
789
- ? /* @__PURE__ */ jsx(Icons.light_mode, { className: classes })
790
- : /* @__PURE__ */ jsx(Icons.dark_mode, { className: classes }),
791
- /* @__PURE__ */ jsx('span', {
792
- className: 'sr-only',
793
- children: resolvedTheme === 'dark' ? 'Switch to light theme' : 'Switch to dark theme',
794
- }),
795
- ],
796
- })
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
+ );
797
338
  }
798
339
  function TableOfContents({ tableOfContents }) {
799
- const [currentSection, setCurrentSection] = useState(tableOfContents[0]?.id)
340
+ const [currentSection, setCurrentSection] = useState(tableOfContents[0]?.id);
800
341
  const getHeadings2 = useCallback((tableOfContents2) => {
801
- return tableOfContents2
802
- .flatMap((node) => [node.id, ...node.children.map((child) => child.id)])
803
- .map((id) => {
804
- const el = document.getElementById(id)
805
- if (!el) return null
806
- const style = window.getComputedStyle(el)
807
- const scrollMt = parseFloat(style.scrollMarginTop)
808
- const top = window.scrollY + el.getBoundingClientRect().top - scrollMt
809
- return { id, top }
810
- })
811
- .filter((x) => x !== null)
812
- }, [])
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
+ }, []);
813
351
  useEffect(() => {
814
- if (tableOfContents.length === 0) return
815
- const headings = getHeadings2(tableOfContents)
352
+ if (tableOfContents.length === 0) return;
353
+ const headings = getHeadings2(tableOfContents);
816
354
  function onScroll() {
817
- const top = window.scrollY
818
- let current = headings[0].id
355
+ const top = window.scrollY;
356
+ let current = headings[0].id;
819
357
  for (const heading of headings) {
820
358
  if (top >= heading.top - 10) {
821
- current = heading.id
359
+ current = heading.id;
822
360
  } else {
823
- break
361
+ break;
824
362
  }
825
363
  }
826
- setCurrentSection(current)
364
+ setCurrentSection(current);
827
365
  }
828
- window.addEventListener('scroll', onScroll, { passive: true })
829
- onScroll()
366
+ window.addEventListener("scroll", onScroll, { passive: true });
367
+ onScroll();
830
368
  return () => {
831
- window.removeEventListener('scroll', onScroll)
832
- }
833
- }, [getHeadings2, tableOfContents])
369
+ window.removeEventListener("scroll", onScroll);
370
+ };
371
+ }, [getHeadings2, tableOfContents]);
834
372
  function isActive(section) {
835
373
  if (section.id === currentSection) {
836
- return true
374
+ return true;
837
375
  }
838
376
  if (!section.children) {
839
- return false
377
+ return false;
840
378
  }
841
- return section.children.findIndex(isActive) > -1
379
+ return section.children.findIndex(isActive) > -1;
842
380
  }
843
- return /* @__PURE__ */ jsx('div', {
844
- className:
845
- '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',
846
- children: /* @__PURE__ */ jsx('nav', {
847
- 'aria-labelledby': 'on-this-page-title',
848
- className: 'w-56',
849
- children:
850
- tableOfContents.length > 0 &&
851
- /* @__PURE__ */ jsxs(Fragment, {
852
- children: [
853
- /* @__PURE__ */ jsx('h2', {
854
- id: 'on-this-page-title',
855
- className: 'font-display text-sm font-medium text-slate-900 dark:text-white',
856
- children: 'On this page',
857
- }),
858
- /* @__PURE__ */ jsx('ol', {
859
- role: 'list',
860
- className: 'mt-4 space-y-3 text-sm',
861
- children: tableOfContents.map((section) =>
862
- /* @__PURE__ */ jsxs(
863
- 'li',
864
- {
865
- children: [
866
- /* @__PURE__ */ jsx('h3', {
867
- children: /* @__PURE__ */ jsx(Link3, {
868
- href: `#${section.id}`,
869
- className: clsx(
870
- isActive(section)
871
- ? 'text-primary font-semibold'
872
- : 'font-normal text-slate-500 hover:text-slate-700 dark:text-slate-400 dark:hover:text-slate-300',
873
- ),
874
- children: section.title,
875
- }),
876
- }),
877
- section.children.length > 0 &&
878
- /* @__PURE__ */ jsx('ol', {
879
- role: 'list',
880
- className: 'mt-2 space-y-3 pl-5 text-slate-500 dark:text-slate-400',
881
- children: section.children.map((subSection) =>
882
- /* @__PURE__ */ jsx(
883
- 'li',
884
- {
885
- children: /* @__PURE__ */ jsx(Link3, {
886
- href: `#${subSection.id}`,
887
- className: isActive(subSection)
888
- ? 'text-primary-light font-semibold'
889
- : 'hover:text-slate-600 dark:hover:text-slate-300',
890
- children: subSection.title,
891
- }),
892
- },
893
- subSection.id,
894
- ),
895
- ),
896
- }),
897
- ],
898
- },
899
- section.id,
900
- ),
901
- ),
902
- }),
903
- ],
904
- }),
905
- }),
906
- })
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
+ ] }) }) });
907
418
  }
908
419
  function ArrowIcon(props) {
909
- return /* @__PURE__ */ jsx('svg', {
910
- viewBox: '0 0 16 16',
911
- 'aria-hidden': 'true',
912
- ...props,
913
- children: /* @__PURE__ */ jsx('path', {
914
- 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',
915
- }),
916
- })
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" }) });
917
421
  }
918
- function PageLink({ title, href, dir = 'next', ...props }) {
919
- return /* @__PURE__ */ jsxs('div', {
920
- ...props,
921
- children: [
922
- /* @__PURE__ */ jsx('dt', {
923
- className: 'font-display text-sm font-medium text-slate-900 dark:text-white',
924
- children: dir === 'next' ? 'Next' : 'Previous',
925
- }),
926
- /* @__PURE__ */ jsx('dd', {
927
- className: 'mt-1',
928
- children: /* @__PURE__ */ jsxs(Link3, {
929
- href,
930
- className: clsx(
931
- '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',
932
- dir === 'previous' && 'flex-row-reverse',
933
- ),
934
- children: [
935
- title,
936
- /* @__PURE__ */ jsx(ArrowIcon, {
937
- className: clsx(
938
- 'h-4 w-4 flex-none fill-current',
939
- dir === 'previous' && '-scale-x-100',
940
- ),
941
- }),
942
- ],
943
- }),
944
- }),
945
- ],
946
- })
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
+ ] });
947
450
  }
948
451
  function PrevNextLinks({ navigation }) {
949
- const pathname = usePathname()
950
- const allLinks = navigation.flatMap((section) => section.links)
951
- const linkIndex = allLinks.findIndex((link) => link.href === pathname)
952
- const previousPage = linkIndex > -1 ? allLinks[linkIndex - 1] : null
953
- const nextPage = linkIndex > -1 ? allLinks[linkIndex + 1] : null
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;
954
457
  if (!nextPage && !previousPage) {
955
- return null
458
+ return null;
956
459
  }
957
- return /* @__PURE__ */ jsxs('dl', {
958
- className: 'mt-12 flex border-t border-slate-200 pt-6 dark:border-slate-800',
959
- children: [
960
- previousPage && /* @__PURE__ */ jsx(PageLink, { dir: 'previous', ...previousPage }),
961
- nextPage && /* @__PURE__ */ jsx(PageLink, { className: 'ml-auto text-right', ...nextPage }),
962
- ],
963
- })
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
+ ] });
964
464
  }
965
465
  var defaultNavigation = [
966
466
  {
967
- title: 'Getting Started',
467
+ title: "Getting Started",
968
468
  links: [
969
- { title: 'Introduction', href: '/' },
970
- { title: 'Installation', href: '/installation' },
971
- ],
469
+ { title: "Introduction", href: "/" },
470
+ { title: "Installation", href: "/installation" }
471
+ ]
972
472
  },
973
473
  {
974
- title: 'Components',
474
+ title: "Components",
975
475
  links: [
976
- { title: 'Button', href: '/components/button' },
977
- { title: 'Layout', href: '/components/layout' },
978
- { title: 'Navigation', href: '/components/navigation' },
979
- ],
980
- },
981
- ]
476
+ { title: "Button", href: "/components/button" },
477
+ { title: "Layout", href: "/components/layout" },
478
+ { title: "Navigation", href: "/components/navigation" }
479
+ ]
480
+ }
481
+ ];
982
482
  function usePageHeadings() {
983
- const [headings, setHeadings] = useState([])
483
+ const [headings, setHeadings] = useState([]);
984
484
  useEffect(() => {
985
- const result = getHeadings()
986
- setHeadings(result)
987
- }, [])
988
- return headings
485
+ const result = getHeadings();
486
+ setHeadings(result);
487
+ }, []);
488
+ return headings;
989
489
  }
990
490
  function Header({ sitename } = {}) {
991
- const [isScrolled, setIsScrolled] = useState(false)
491
+ const [isScrolled, setIsScrolled] = useState(false);
992
492
  useEffect(() => {
993
493
  function onScroll() {
994
- setIsScrolled(window.scrollY > 0)
494
+ setIsScrolled(window.scrollY > 0);
995
495
  }
996
- onScroll()
997
- window.addEventListener('scroll', onScroll, { passive: true })
496
+ onScroll();
497
+ window.addEventListener("scroll", onScroll, { passive: true });
998
498
  return () => {
999
- window.removeEventListener('scroll', onScroll)
1000
- }
1001
- }, [])
1002
- return /* @__PURE__ */ jsxs('header', {
1003
- className: clsx(
1004
- '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',
1005
- isScrolled
1006
- ? 'dark:bg-slate-900/95 dark:backdrop-blur-sm dark:[@supports(backdrop-filter:blur(0))]:bg-slate-900/75'
1007
- : 'dark:bg-transparent',
1008
- ),
1009
- children: [
1010
- /* @__PURE__ */ jsx('div', { className: 'mr-6 flex lg:hidden' }),
1011
- /* @__PURE__ */ jsx('div', {
1012
- className: 'relative flex grow basis-0 items-center',
1013
- children: /* @__PURE__ */ jsxs(Link3, {
1014
- href: '/',
1015
- 'aria-label': 'Home page',
1016
- className: 'flex items-center justify-between',
1017
- children: [
1018
- /* @__PURE__ */ jsx(Logo, { className: 'h-12 w-auto lg:h-14' }),
1019
- /* @__PURE__ */ jsx('h2', {
1020
- className: 'text-primary ml-6 text-2xl font-semibold dark:text-white',
1021
- children: sitename,
1022
- }),
1023
- ],
1024
- }),
1025
- }),
1026
- /* @__PURE__ */ jsx('div', { className: '-my-5 mr-6 sm:mr-8 md:mr-0' }),
1027
- /* @__PURE__ */ jsxs('div', {
1028
- className: 'relative flex basis-0 justify-end gap-2 sm:gap-4 md:grow',
1029
- children: [
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: [
1030
517
  /* @__PURE__ */ jsx(ThemeSwitcher, {}),
1031
- /* @__PURE__ */ jsx(Button, {
1032
- variant: 'outline',
1033
- size: 'icon',
1034
- className: 'h-10 w-10',
1035
- asChild: true,
1036
- children: /* @__PURE__ */ jsx(Link3, {
1037
- href: 'https://github.com',
1038
- className: 'group',
1039
- 'aria-label': 'GitHub',
1040
- children: /* @__PURE__ */ jsx(Icons.github, {
1041
- className: 'fill-nsw-grey-600 dark:fill-nsw-grey-100 size-6',
1042
- }),
1043
- }),
1044
- }),
1045
- ],
1046
- }),
1047
- ],
1048
- })
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
+ ]
521
+ }
522
+ );
1049
523
  }
1050
524
  function Layout({ children, sitename, navigation = defaultNavigation }) {
1051
- const pathname = usePathname()
1052
- const isHomePage = pathname === '/'
1053
- const tableOfContents = usePageHeadings()
1054
- return /* @__PURE__ */ jsxs('div', {
1055
- className: 'flex w-full flex-col',
1056
- children: [
1057
- /* @__PURE__ */ jsx(Masthead, {}),
1058
- /* @__PURE__ */ jsx(Header, { sitename }),
1059
- isHomePage && /* @__PURE__ */ jsx(Fragment, {}),
1060
- /* @__PURE__ */ jsxs('div', {
1061
- className:
1062
- 'max-w-8xl relative mx-auto flex w-full flex-auto justify-center sm:px-2 lg:px-8 xl:px-12',
1063
- children: [
1064
- /* @__PURE__ */ jsxs('div', {
1065
- className: 'hidden lg:relative lg:block lg:flex-none',
1066
- children: [
1067
- /* @__PURE__ */ jsx('div', {
1068
- className: 'bg-nsw-grey-50 absolute inset-y-0 right-0 w-[50vw] dark:hidden',
1069
- }),
1070
- /* @__PURE__ */ jsx('div', {
1071
- className:
1072
- 'from-nsw-grey-600 absolute top-16 right-0 bottom-0 hidden h-12 w-px bg-linear-to-t dark:block',
1073
- }),
1074
- /* @__PURE__ */ jsx('div', {
1075
- className:
1076
- 'bg-nsw-grey-600 absolute top-28 right-0 bottom-0 hidden w-px dark:block',
1077
- }),
1078
- /* @__PURE__ */ jsx('div', {
1079
- className:
1080
- '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',
1081
- children: /* @__PURE__ */ jsx(Navigation, { navigation }),
1082
- }),
1083
- ],
1084
- }),
1085
- /* @__PURE__ */ jsxs('div', {
1086
- className: 'flex flex-1 flex-col',
1087
- children: [
1088
- /* @__PURE__ */ jsxs('div', {
1089
- className: 'flex flex-1',
1090
- children: [
1091
- /* @__PURE__ */ jsxs('div', {
1092
- className:
1093
- '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',
1094
- children: [
1095
- /* @__PURE__ */ jsx('article', { children }),
1096
- /* @__PURE__ */ jsx(PrevNextLinks, { navigation }),
1097
- ],
1098
- }),
1099
- /* @__PURE__ */ jsx(TableOfContents, { tableOfContents }),
1100
- ],
1101
- }),
1102
- /* @__PURE__ */ jsx(Footer, {}),
1103
- ],
1104
- }),
1105
- ],
1106
- }),
1107
- ],
1108
- })
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
+ ] });
1109
551
  }
1110
552
  function ThemeProvider({ children, ...props }) {
1111
- return /* @__PURE__ */ jsx(ThemeProvider$1, { ...props, children })
553
+ return /* @__PURE__ */ jsx(ThemeProvider$1, { ...props, children });
554
+ }
555
+ function Providers({ children }) {
556
+ return /* @__PURE__ */ jsxs(ThemeProvider, { attribute: "class", defaultTheme: "system", enableSystem: true, disableTransitionOnChange: true, children: [
557
+ /* @__PURE__ */ jsx(DynamicFavicon, { lightModeFavicon: "/icon-light.ico", darkModeFavicon: "/icon-dark.ico" }),
558
+ children
559
+ ] });
1112
560
  }
1113
561
  function cn(...inputs) {
1114
- return twMerge(clsx$1(inputs))
562
+ return twMerge(clsx$1(inputs));
1115
563
  }
1116
564
  function truncate(text, maxLength) {
1117
565
  if (text.length <= maxLength) {
1118
- return text
566
+ return text;
1119
567
  }
1120
- return text.slice(0, maxLength) + '...'
568
+ return text.slice(0, maxLength) + "...";
1121
569
  }
1122
570
  function kebabCase(str) {
1123
- return str
1124
- .replace(/([a-z])([A-Z])/g, '$1-$2')
1125
- .replace(/[\s_]+/g, '-')
1126
- .toLowerCase()
571
+ return str.replace(/([a-z])([A-Z])/g, "$1-$2").replace(/[\s_]+/g, "-").toLowerCase();
1127
572
  }
1128
573
  function camelCase(str) {
1129
- return str.toLowerCase().replace(/[^a-zA-Z0-9]+(.)/g, (_, chr) => chr.toUpperCase())
574
+ return str.toLowerCase().replace(/[^a-zA-Z0-9]+(.)/g, (_, chr) => chr.toUpperCase());
1130
575
  }
1131
576
 
1132
577
  // src/packages/index.ts
@@ -1141,34 +586,13 @@ var nswdsExports = {
1141
586
  Navigation,
1142
587
  PrevNextLinks,
1143
588
  TableOfContents,
589
+ Providers,
1144
590
  ThemeProvider,
1145
591
  ThemeSwitcher,
1146
- defaultNavigation,
1147
- }
1148
- var index_default = nswdsExports
592
+ defaultNavigation
593
+ };
594
+ var index_default = nswdsExports;
1149
595
 
1150
- export {
1151
- Button,
1152
- DynamicFavicon,
1153
- Footer,
1154
- Icons,
1155
- Layout,
1156
- Logo,
1157
- Masthead,
1158
- Navigation,
1159
- PrevNextLinks,
1160
- TableOfContents,
1161
- ThemeProvider,
1162
- ThemeSwitcher,
1163
- camelCase,
1164
- cn,
1165
- index_default as default,
1166
- defaultNavigation,
1167
- domToSimple,
1168
- getHeadings,
1169
- getNodeText,
1170
- kebabCase,
1171
- truncate,
1172
- }
1173
- //# sourceMappingURL=index.js.map
596
+ export { Button, DynamicFavicon, Footer, Icons, Layout, Logo, Masthead, Navigation, PrevNextLinks, Providers, TableOfContents, ThemeProvider, ThemeSwitcher, camelCase, cn, index_default as default, defaultNavigation, domToSimple, getHeadings, getNodeText, kebabCase, truncate };
1174
597
  //# sourceMappingURL=index.js.map
598
+ //# sourceMappingURL=index.js.map