diff --git a/src/icons.ts b/src/icons.ts index a6a6c2b..71a4a30 100644 --- a/src/icons.ts +++ b/src/icons.ts @@ -3,6 +3,7 @@ export { default as ArrowLeft } from "./icons/ArrowLeft"; export { default as ArrowLinkRight } from "./icons/ArrowLinkRight"; export { default as ArrowLinkUpRight } from "./icons/ArrowLinkUpRight"; export { default as ArrowRight } from "./icons/ArrowRight"; +export { default as ArrowUp } from "./icons/ArrowUp"; export { default as AuthorIcon } from "./icons/AuthorIcon"; export { default as BitcoinIcon } from "./icons/BitcoinIcon"; export { default as BookmarkIcon } from "./icons/BookmarkIcon"; @@ -15,6 +16,7 @@ export { default as DiscordIcon } from "./icons/DiscordIcon"; export { default as FilterIcon } from "./icons/FilterIcon"; export { default as FilterCloseIcon } from "./icons/FilterCloseIcon"; export { default as GithubIcon } from "./icons/GithubIcon"; +export { default as LightningIconSolid } from "./icons/LightningIconSolid"; export { default as MicIcon } from "./icons/MicIcon"; export { default as NightIcon } from "./icons/NightIcon"; export { default as NostrIcon } from "./icons/NostrIcon"; diff --git a/src/icons/ArrowUp.tsx b/src/icons/ArrowUp.tsx new file mode 100644 index 0000000..1f68fe2 --- /dev/null +++ b/src/icons/ArrowUp.tsx @@ -0,0 +1,29 @@ +import * as React from "react"; +import { SVGProps } from "react"; +const ArrowUp = ({ + width = 12, + // eslint-disable-next-line @typescript-eslint/no-unused-vars + height, + pathProps, + ...props +}: SVGProps & { pathProps?: SVGProps }) => { + // height is destructed and unused, scaling is defined by width + return ( + + + + ); +}; +export default ArrowUp; diff --git a/src/icons/LightningIconSolid.tsx b/src/icons/LightningIconSolid.tsx new file mode 100644 index 0000000..eab8e29 --- /dev/null +++ b/src/icons/LightningIconSolid.tsx @@ -0,0 +1,27 @@ +import * as React from "react"; +import { SVGProps } from "react"; +const LightningIconSolid = ({ + width = 14, + // eslint-disable-next-line @typescript-eslint/no-unused-vars + height, + pathProps, + ...props +}: SVGProps & { pathProps?: SVGProps }) => { + // height is destructed and unused, scaling is defined by width + return ( + + + + ); +}; +export default LightningIconSolid;