gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
4 lines • 487 B
text/typescript
import { generateIcon } from "../generate";
export function anthropic(height?:number, width?:number, className?:string) {
return generateIcon(`<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-anthropic' viewBox='0 0 16 16'> <path fill-rule='evenodd' d='M9.218 2h2.402L16 12.987h-2.402zM4.379 2h2.512l4.38 10.987H8.82l-.895-2.308h-4.58l-.896 2.307H0L4.38 2.001zm2.755 6.64L5.635 4.777 4.137 8.64z'/> </svg>`, height, width, className);
}