Files
jellyfin-audio-player/src/components/WrappableButtonRow.tsx
2022-05-04 18:28:15 +02:00

13 lines
285 B
TypeScript

import styled from 'styled-components/native';
import Button from './Button';
export const WrappableButtonRow = styled.View`
flex: 0 0 auto;
flex-direction: row;
flex-wrap: wrap;
margin: 24px -2px;
`;
export const WrappableButton = styled(Button)`
margin: 2px;
`;