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

10 lines
192 B
TypeScript
Raw Normal View History

2020-06-17 14:58:04 +02:00
import styled from 'styled-components/native';
const Input = styled.TextInput`
margin: 10px 0;
border-radius: 8px;
2020-06-17 14:58:04 +02:00
padding: 15px;
2022-05-11 23:57:30 +02:00
padding-left: 40px;
2020-06-17 14:58:04 +02:00
`;
export default Input;