37 lines
882 B
TypeScript
Raw Normal View History

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;
}
`;