UNPKG

@mithril-icons/font-awesome

Version:

Mithril icons generated from https://fontawesome.com

6 lines (4 loc) 535 B
import m from 'mithril' import { SVGAttributes } from '../../svg' const StickyNote: m.Component<SVGAttributes> = { view: ({ attrs }) => m("svg", {"xmlns":"http://www.w3.org/2000/svg","viewBox":"0 0 448 512", ...attrs }, m("path", {"d":"M448 348.106V80c0-26.51-21.49-48-48-48H48C21.49 32 0 53.49 0 80v351.988c0 26.51 21.49 48 48 48h268.118a48 48 0 0 0 33.941-14.059l83.882-83.882A48 48 0 0 0 448 348.106zm-128 80v-76.118h76.118L320 428.106zM400 80v223.988H296c-13.255 0-24 10.745-24 24v104H48V80h352z"}, )) } export default StickyNote