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/BarChart.tsx | |
| download | umami-main.tar.xz umami-main.zip | |
Created from https://vercel.com/new
Diffstat (limited to 'src/components/svg/BarChart.tsx')
| -rw-r--r-- | src/components/svg/BarChart.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/components/svg/BarChart.tsx b/src/components/svg/BarChart.tsx new file mode 100644 index 0000000..96ebe00 --- /dev/null +++ b/src/components/svg/BarChart.tsx @@ -0,0 +1,8 @@ +import type { SVGProps } from 'react'; + +const SvgBarChart = (props: SVGProps<SVGSVGElement>) => ( + <svg xmlns="http://www.w3.org/2000/svg" width={512} height={512} viewBox="0 0 24 24" {...props}> + <path d="M7 13v9a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-9a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1m7-12h-4a1 1 0 0 0-1 1v20a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1m8 5h-4a1 1 0 0 0-1 1v15a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1" /> + </svg> +); +export default SvgBarChart; |