import { FC } from 'react'; import styled from 'styled-components'; import { motion } from 'framer-motion'; import { compose, space, layout, flexbox, border, position, color, SpaceProps, LayoutProps, FlexboxProps, BorderProps, PositionProps, BackgroundColorProps, } from 'styled-system'; export type BarStyleProps = SpaceProps & LayoutProps & FlexboxProps & BorderProps & PositionProps & BackgroundColorProps & { children: React.ReactNode }; export const BarStyle = styled(motion.div)` position: relative; z-index: 14; height: 40px; width: auto; display: flex; flex-direction: row; align-items: center; border-radius: 6px; backdrop-filter: var(--blur); /* transform: translate3d(0, 0, 0); */ backface-visibility: hidden; -webkit-backface-visibility: hidden; transition: var(--transition-slow); background: rgba(var(--rlm-dock-rgba)); ${compose(space, layout, flexbox, border, position, color)} `; export const Bar: FC = ({ children, ...rest }) => { return ( {children} ); };