1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-04-27 15:11:36 +07:00
verdaccio-ui/src/components/AutoComplete/styles.js
Priscila Oliveira e2d478d65b initial commit
2019-02-03 17:04:42 +01:00

53 lines
899 B
JavaScript

/**
* @prettier
* @flow
*/
import React from 'react';
import styled, { css } from 'react-emotion';
import TextField from '../TextField';
import { IInputField } from './types';
export const Wrapper = styled.div`
&& {
width: 100%;
height: 32px;
position: relative;
z-index: 1;
}
`;
export const InputField = ({ color, ...others }: IInputField) => (
<TextField
{...others}
classes={{
input: css`
&& {
${color &&
css`
color: ${color};
`};
}
`,
root: css`
&& {
&:before {
content: '';
border: none;
}
&:after {
${color &&
css`
border-color: ${color};
`};
}
&:hover:before {
content: none;
}
}
`,
}}
/>
);