mirror of
https://github.com/morten-olsen/react-native-debug-console.git
synced 2026-02-08 00:36:26 +01:00
29 lines
478 B
JavaScript
29 lines
478 B
JavaScript
import React from 'react';
|
|
import styled from 'styled-components/native';
|
|
import Button from './Button';
|
|
import Seperator from './Seperator';
|
|
import Selector from './Selector';
|
|
|
|
export {
|
|
Button,
|
|
Seperator,
|
|
Selector,
|
|
}
|
|
|
|
const Wrapper = styled.View`
|
|
flex-direction: row;
|
|
align-items: center;
|
|
border-bottom-width: 1px;
|
|
border-color: #ccc;
|
|
padding: 0 10px;
|
|
`;
|
|
|
|
const Toolbar = ({
|
|
children,
|
|
}) => (
|
|
<Wrapper>
|
|
{children}
|
|
</Wrapper>
|
|
)
|
|
|
|
export default Toolbar; |