gitlab static method
Implementation
static Component gitlab() {
return const Component.element(
tag: 'svg',
attributes: <String, String>{
'width': '18',
'height': '18',
'viewBox': '0 0 24 24',
'fill': 'currentColor',
},
children: <Component>[
Component.element(
tag: 'path',
attributes: <String, String>{
'd':
'M4.845.904c-.435 0-.82.28-.955.692C2.639 5.449 1.246 9.728.07 13.335a1.437 1.437 0 00.522 1.607l11.071 8.045c.2.145.472.144.67-.004l11.073-8.04a1.436 1.436 0 00.522-1.61c-1.285-3.942-2.683-8.256-3.817-11.746a1.004 1.004 0 00-.957-.684.987.987 0 00-.949.69l-2.405 7.408H8.203l-2.41-7.408a.987.987 0 00-.942-.69h-.006z',
},
),
],
);
}