diff --git a/packages/paste-core/components/input/src/Input.tsx b/packages/paste-core/components/input/src/Input.tsx index bbf8f16429..0b6a27fc3a 100644 --- a/packages/paste-core/components/input/src/Input.tsx +++ b/packages/paste-core/components/input/src/Input.tsx @@ -55,7 +55,7 @@ export const InputElement = styled.input((props) => paddingTop: 'space30', resize: 'none', width: '100%', - cursor: props.type === 'date' && !props.readOnly && !props.disabled ? 'text' : 'auto', + cursor: (props.type === 'date' || props.type === 'time') && !props.readOnly && !props.disabled ? 'text' : 'auto', '&::placeholder': { color: props.variant === 'inverse' ? 'colorTextInverseWeak' : 'colorTextWeak',