diff --git a/icons/index.ts b/icons/index.ts index eef71ce..cb6fe7c 100644 --- a/icons/index.ts +++ b/icons/index.ts @@ -56,6 +56,7 @@ export type Icon = | { name: 'dots'; size: 16 } | { name: 'dots'; size: 24 } | { name: 'download'; size: 24 } + | { name: 'download-outline'; size: 12 } | { name: 'download-roundel'; size: 16 } | { name: 'edit'; size: 16 } | { name: 'email'; size: 16 } @@ -152,6 +153,7 @@ export type Icon = | { name: 'settings'; size: 24 } | { name: 'show'; size: 16 } | { name: 'sign-out'; size: 16 } + | { name: 'size-outline'; size: 12 } | { name: 'snapshots'; size: 16 } | { name: 'snapshots'; size: 24 } | { name: 'software-update'; size: 16 } @@ -170,6 +172,7 @@ export type Icon = | { name: 'terminal'; size: 16 } | { name: 'terminal'; size: 24 } | { name: 'time'; size: 16 } + | { name: 'time-outline'; size: 12 } | { name: 'transmit'; size: 16 } | { name: 'transmit'; size: 24 } | { name: 'unauthorized'; size: 12 } diff --git a/icons/react/DownloadOutline12Icon.tsx b/icons/react/DownloadOutline12Icon.tsx new file mode 100644 index 0000000..2651daa --- /dev/null +++ b/icons/react/DownloadOutline12Icon.tsx @@ -0,0 +1,35 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, you can obtain one at https://mozilla.org/MPL/2.0/. + * + * Copyright Oxide Computer Company + */ +import type { SVGProps } from 'react' + +interface SVGRProps { + title?: string + titleId?: string +} +const DownloadOutline12Icon = ({ + title, + titleId, + ...props +}: SVGProps & SVGRProps) => ( + + {title ? {title} : null} + + +) +export default DownloadOutline12Icon diff --git a/icons/react/OpenLink12Icon.tsx b/icons/react/OpenLink12Icon.tsx index dd9e4cf..a656d81 100644 --- a/icons/react/OpenLink12Icon.tsx +++ b/icons/react/OpenLink12Icon.tsx @@ -28,9 +28,7 @@ const OpenLink12Icon = ({ {title ? {title} : null} ) diff --git a/icons/react/SizeOutline12Icon.tsx b/icons/react/SizeOutline12Icon.tsx new file mode 100644 index 0000000..f14986f --- /dev/null +++ b/icons/react/SizeOutline12Icon.tsx @@ -0,0 +1,35 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, you can obtain one at https://mozilla.org/MPL/2.0/. + * + * Copyright Oxide Computer Company + */ +import type { SVGProps } from 'react' + +interface SVGRProps { + title?: string + titleId?: string +} +const SizeOutline12Icon = ({ + title, + titleId, + ...props +}: SVGProps & SVGRProps) => ( + + {title ? {title} : null} + + +) +export default SizeOutline12Icon diff --git a/icons/react/TimeOutline12Icon.tsx b/icons/react/TimeOutline12Icon.tsx new file mode 100644 index 0000000..cbde120 --- /dev/null +++ b/icons/react/TimeOutline12Icon.tsx @@ -0,0 +1,35 @@ +/* + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, you can obtain one at https://mozilla.org/MPL/2.0/. + * + * Copyright Oxide Computer Company + */ +import type { SVGProps } from 'react' + +interface SVGRProps { + title?: string + titleId?: string +} +const TimeOutline12Icon = ({ + title, + titleId, + ...props +}: SVGProps & SVGRProps) => ( + + {title ? {title} : null} + + +) +export default TimeOutline12Icon diff --git a/icons/react/index.ts b/icons/react/index.ts index f576611..856afa9 100644 --- a/icons/react/index.ts +++ b/icons/react/index.ts @@ -131,9 +131,11 @@ export { default as Settings16Icon } from './Settings16Icon.tsx' export { default as Show16Icon } from './Show16Icon.tsx' export { default as SignOut16Icon } from './SignOut16Icon.tsx' export { default as Snapshots16Icon } from './Snapshots16Icon.tsx' +export { default as Sparkle16Icon } from './Sparkle16Icon.tsx' export { default as SoftwareUpdate16Icon } from './SoftwareUpdate16Icon.tsx' export { default as Ssd16Icon } from './Ssd16Icon.tsx' export { default as Storage16Icon } from './Storage16Icon.tsx' +export { default as Submit16Icon } from './Submit16Icon.tsx' export { default as Subnet16Icon } from './Subnet16Icon.tsx' export { default as Tags16Icon } from './Tags16Icon.tsx' export { default as Terminal16Icon } from './Terminal16Icon.tsx' @@ -153,6 +155,7 @@ export { default as DirectionLeftIcon } from './DirectionLeftIcon.tsx' export { default as Clipboard12Icon } from './Clipboard12Icon.tsx' export { default as Copy12Icon } from './Copy12Icon.tsx' export { default as Disabled12Icon } from './Disabled12Icon.tsx' +export { default as DownloadOutline12Icon } from './DownloadOutline12Icon.tsx' export { default as Error12Icon } from './Error12Icon.tsx' export { default as Info12Icon } from './Info12Icon.tsx' export { default as Filter12Icon } from './Filter12Icon.tsx' @@ -166,12 +169,12 @@ export { default as PrevArrow12Icon } from './PrevArrow12Icon.tsx' export { default as OpenLink12Icon } from './OpenLink12Icon.tsx' export { default as Repair12Icon } from './Repair12Icon.tsx' export { default as Security12Icon } from './Security12Icon.tsx' +export { default as SizeOutline12Icon } from './SizeOutline12Icon.tsx' export { default as Success12Icon } from './Success12Icon.tsx' +export { default as TimeOutline12Icon } from './TimeOutline12Icon.tsx' export { default as Unauthorized12Icon } from './Unauthorized12Icon.tsx' export { default as Warning12Icon } from './Warning12Icon.tsx' export { default as Question12Icon } from './Question12Icon.tsx' export { default as Hide12Icon } from './Hide12Icon.tsx' export { default as SelectArrows6Icon } from './SelectArrows6Icon.tsx' export { default as Close8Icon } from './Close8Icon.tsx' -export { default as Sparkle16Icon } from './Sparkle16Icon.tsx' -export { default as Submit16Icon } from './Submit16Icon.tsx' diff --git a/icons/sprite.svg b/icons/sprite.svg index 10fcd4a..6534e8d 100644 --- a/icons/sprite.svg +++ b/icons/sprite.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/svg/download-outline-12.svg b/icons/svg/download-outline-12.svg new file mode 100644 index 0000000..561e4a7 --- /dev/null +++ b/icons/svg/download-outline-12.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/svg/open-link-12.svg b/icons/svg/open-link-12.svg index 0139c2d..91be80f 100644 --- a/icons/svg/open-link-12.svg +++ b/icons/svg/open-link-12.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/icons/svg/size-outline-12.svg b/icons/svg/size-outline-12.svg new file mode 100644 index 0000000..58ca3c7 --- /dev/null +++ b/icons/svg/size-outline-12.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/svg/time-outline-12.svg b/icons/svg/time-outline-12.svg new file mode 100644 index 0000000..97e30ee --- /dev/null +++ b/icons/svg/time-outline-12.svg @@ -0,0 +1 @@ + \ No newline at end of file