import { gloss } from 'gloss'
import * as React from 'react'
import { RoundButtonSmall } from './buttons/RoundButtonSmall'
import { Text } from './text/Text'
import { Stack } from './View/Stack'
import { View } from './View/View'
const statusBarProps = {
alignItems: 'center',
alpha: 0.7,
size: 0.95,
}
export const StatusBar = gloss(View, {
padding: [0, 7],
height: 34,
flexDirection: 'row',
overflow: 'hidden',
alignItems: 'center',
// backdropFilter: 'blur(10px)',
}).theme(props => ({
background: props.background.setAlpha(0.97),
borderTop: [1, props.borderColor.setAlpha(a => a * 0.75)],
boxShadow: [[0, 0, 10, [0, 0, 0, 0.06]]],
}))
export const StatusBarSpace = gloss({
width: 10,
})
export const StatusBarButton = props => (
)
export const StatusBarText = props =>
export const StatusBarSection = props => (
)