import type React from 'react'; import {css} from '@emotion/react'; import styled from '@emotion/styled'; import {InputGroup} from 'sentry/components/inputGroup'; import {space} from 'sentry/styles/space'; interface Props extends React.ComponentProps {} export function PercentInput(props: Props) { return ( % ); } const TrailingPercent = styled('strong')` padding: 0 ${space(0.25)}; `;