Files
jellyfin-audio-player/src/components/WrappableButtonRow.tsx

13 lines
284 B
TypeScript
Raw Normal View History

2022-01-01 21:55:32 +01:00
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: 6px -2px;
`;
export const WrappableButton = styled(Button)`
margin: 2px;
`;