RobBrazier/svelte-awesome

View on GitHub
src/lib/icons/barChartO.ts

Summary

Maintainability
A
45 mins
Test Coverage
import type { IconData } from '$lib/components/Icon.svelte';
const barChartO: Record<string, IconData> = {
  'bar-chart-o': {
    width: 2048,
    height: 1792,
    paths: [
      {
        d: 'M640 896v512h-256v-512h256zM1024 384v1024h-256v-1024h256zM2048 1536v128h-2048v-1536h128v1408h1920zM1408 640v768h-256v-768h256zM1792 256v1152h-256v-1152h256z'
      }
    ]
  }
};
export default barChartO;