RobBrazier/svelte-awesome

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

Summary

Maintainability
A
45 mins
Test Coverage
import type { IconData } from '$lib/components/Icon.svelte';
const adn: Record<string, IconData> = {
  adn: {
    width: 1536,
    height: 1792,
    paths: [
      {
        d: 'M768 622l201 306h-402zM1133 1152h94l-459-691-459 691h94l104-160h522zM1536 896q0 209-103 385.5t-279.5 279.5-385.5 103-385.5-103-279.5-279.5-103-385.5 103-385.5 279.5-279.5 385.5-103 385.5 103 279.5 279.5 103 385.5z'
      }
    ]
  }
};
export default adn;