mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-09 07:53:33 +00:00
37 lines
882 B
TypeScript
37 lines
882 B
TypeScript
import { Input } from 'antd';
|
|
import styled from 'styled-components';
|
|
|
|
import { getColor } from '@components/theme/utils';
|
|
|
|
import { colors, typography } from '@src/alchemy-components/theme';
|
|
|
|
export const StyledSearchBar = styled(Input)<{ $width?: string; $height?: string }>`
|
|
height: ${(props) => props.$height};
|
|
width: ${(props) => props.$width};
|
|
display: flex;
|
|
align-items: center;
|
|
border-radius: 8px;
|
|
|
|
input {
|
|
color: ${colors.gray[600]};
|
|
font-size: ${typography.fontSizes.md} !important;
|
|
}
|
|
|
|
.ant-input-prefix {
|
|
width: 20px;
|
|
color: ${colors.gray[1800]};
|
|
|
|
svg {
|
|
height: 16px;
|
|
width: 16px;
|
|
}
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:focus-within {
|
|
border-color: ${({ theme }) => getColor('primary', 300, theme)} !important;
|
|
box-shadow: none !important;
|
|
}
|
|
`;
|