RobBrazier/svelte-awesome

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

Summary

Maintainability
A
45 mins
Test Coverage
import type { IconData } from '$lib/components/Icon.svelte';
const bandcamp: Record<string, IconData> = {
  bandcamp: {
    width: 1792,
    height: 1792,
    paths: [
      {
        d: 'M1070 1178l306-564h-654l-306 564h654zM1792 896q0 182-71 348t-191 286-286 191-348 71-348-71-286-191-191-286-71-348 71-348 191-286 286-191 348-71 348 71 286 191 191 286 71 348z'
      }
    ]
  }
};
export default bandcamp;