diff options
| author | Fuwn <[email protected]> | 2026-01-24 13:09:50 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-24 13:09:50 +0000 |
| commit | 396acf3bbbe00a192cb0ea0a9ccf91b1d8d2850b (patch) | |
| tree | b9df4ca6a70db45cfffbae6fdd7252e20fb8e93c /src/components/svg/Expand.tsx | |
| download | umami-main.tar.xz umami-main.zip | |
Created from https://vercel.com/new
Diffstat (limited to 'src/components/svg/Expand.tsx')
| -rw-r--r-- | src/components/svg/Expand.tsx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/components/svg/Expand.tsx b/src/components/svg/Expand.tsx new file mode 100644 index 0000000..a0f472e --- /dev/null +++ b/src/components/svg/Expand.tsx @@ -0,0 +1,18 @@ +import type { SVGProps } from 'react'; + +const SvgExpand = (props: SVGProps<SVGSVGElement>) => ( + <svg + xmlns="http://www.w3.org/2000/svg" + width={512} + height={512} + fillRule="evenodd" + strokeLinejoin="round" + strokeMiterlimit={2} + clipRule="evenodd" + viewBox="0 0 48 48" + {...props} + > + <path d="M7.5 40.018v-10.5c0-1.379-1.12-2.5-2.5-2.5s-2.5 1.121-2.5 2.5v11a4.5 4.5 0 0 0 4.5 4.5h12a2.5 2.5 0 0 0 0-5zm33 0H29a2.5 2.5 0 0 0 0 5h12a4.5 4.5 0 0 0 4.5-4.5v-11c0-1.379-1.12-2.5-2.5-2.5s-2.5 1.121-2.5 2.5zm-33-33H19a2.5 2.5 0 0 0 0-5H7a4.5 4.5 0 0 0-4.5 4.5v11a2.5 2.5 0 0 0 5 0zm33 0v10.5a2.5 2.5 0 0 0 5 0v-11a4.5 4.5 0 0 0-4.5-4.5H29a2.5 2.5 0 0 0 0 5z" /> + </svg> +); +export default SvgExpand; |