gd-bs
Version:
Bootstrap JavaScript, TypeScript and Web Components library.
4 lines • 427 B
text/typescript
import { generateIcon } from "../generate";
export function exclamationLg(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-exclamation-lg' viewBox='0 0 16 16'> <path d='M7.005 3.1a1 1 0 1 1 1.99 0l-.388 6.35a.61.61 0 0 1-1.214 0zM7 12a1 1 0 1 1 2 0 1 1 0 0 1-2 0'/> </svg>`, height, width, className);
}