Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 534 Bytes

ControlsBar.md

File metadata and controls

21 lines (16 loc) · 534 Bytes

ControlsBar

The <ControlsBar/> component takes a list of children, displays them with flex with wrapping, and adds margin: 10px to each children.

Screenshot from 2022-03-30 09-49-22

import React from "react";
import { ControlsBar } from "@gns-science/toshi-nest";

const ControlsBarDemo = () => {
  return (
   <ControlsBar>
     <Button1 />
     <Button2 />
   </ControlsBar>
  )
};

Home