microsoft static method

Component microsoft()

Implementation

static Component microsoft() {
  return const Component.element(
    tag: 'svg',
    attributes: <String, String>{
      'width': '18',
      'height': '18',
      'viewBox': '0 0 21 21',
      'fill': 'none',
    },
    children: <Component>[
      Component.element(
        tag: 'rect',
        attributes: <String, String>{
          'x': '1',
          'y': '1',
          'width': '9',
          'height': '9',
          'fill': '#F25022',
        },
      ),
      Component.element(
        tag: 'rect',
        attributes: <String, String>{
          'x': '11',
          'y': '1',
          'width': '9',
          'height': '9',
          'fill': '#7FBA00',
        },
      ),
      Component.element(
        tag: 'rect',
        attributes: <String, String>{
          'x': '1',
          'y': '11',
          'width': '9',
          'height': '9',
          'fill': '#00A4EF',
        },
      ),
      Component.element(
        tag: 'rect',
        attributes: <String, String>{
          'x': '11',
          'y': '11',
          'width': '9',
          'height': '9',
          'fill': '#FFB900',
        },
      ),
    ],
  );
}