import React from 'react'; import styled from 'styled-components'; type Props = { className?: string; }; type NativeAttrs = Omit, keyof Props>; export type CustomSelectDividerProps = Props & NativeAttrs; const StyledCustomSelectDivider = styled.div` display: flex; justify-content: flex-start; align-items: center; width: 100%; height: 1px; margin: 0; padding: 0; overflow: hidden; user-select: none; line-height: 0; border-top: 1px solid var(--form-border-color); `; export const CustomSelectDivider = StyledCustomSelectDivider; CustomSelectDivider.displayName = 'CustomSelectDivider';