this repo has no description
lustre frontent oat-ui gleam
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

:lipstick: add calculator icon

+44
+44
src/icon.gleam
··· 21 21 ], 22 22 ) 23 23 } 24 + 25 + pub fn calculator(attributes: List(Attribute(a))) { 26 + svg.svg( 27 + [ 28 + attribute("stroke-linejoin", "round"), 29 + attribute("stroke-linecap", "round"), 30 + attribute("stroke-width", "2"), 31 + attribute("stroke", "currentColor"), 32 + attribute("fill", "none"), 33 + attribute("viewBox", "0 0 24 24"), 34 + attribute("height", "24"), 35 + attribute("width", "24"), 36 + ..attributes 37 + ], 38 + [ 39 + svg.rect([ 40 + attribute("rx", "2"), 41 + attribute("y", "2"), 42 + attribute("x", "4"), 43 + attribute("height", "20"), 44 + attribute("width", "16"), 45 + ]), 46 + svg.line([ 47 + attribute("y2", "6"), 48 + attribute("y1", "6"), 49 + attribute("x2", "16"), 50 + attribute("x1", "8"), 51 + ]), 52 + svg.line([ 53 + attribute("y2", "18"), 54 + attribute("y1", "14"), 55 + attribute("x2", "16"), 56 + attribute("x1", "16"), 57 + ]), 58 + svg.path([attribute("d", "M16 10h.01")]), 59 + svg.path([attribute("d", "M12 10h.01")]), 60 + svg.path([attribute("d", "M8 10h.01")]), 61 + svg.path([attribute("d", "M12 14h.01")]), 62 + svg.path([attribute("d", "M8 14h.01")]), 63 + svg.path([attribute("d", "M12 18h.01")]), 64 + svg.path([attribute("d", "M8 18h.01")]), 65 + ], 66 + ) 67 + }