import {css} from '@emotion/react'; import {Theme} from 'sentry/utils/theme'; /** * Inner padding for inputs. This is deprecated. If necessary, use the values * in `theme.formPadding` instead. Be sure to specify the input size, e.g. * `theme.formPadding.md.paddingLeft`. * * @deprecated */ export const INPUT_PADDING = 10; type Props = { theme: Theme; disabled?: boolean; monospace?: boolean; readOnly?: boolean; }; /** * Styles for inputs/textareas. This is deprecated. Consider these * alternatives: * * - [Strongly Recommended] Use the existing form components, such as: * + from 'sentry/components/input' * +