# Input Stepper >> Use Cases ||20 ```js script import { html } from '@mdjs/mdjs-preview'; import '@lion/ui/define/lion-input-stepper.js'; ``` ## Default with no specification When no range or step is defined, it can go infinite with default step value as `1`. You can also specify prefix content using `after` slot. ```js preview-story export const defaultMode = () => html`
In Billion Years
`; ``` ## Step and Value Use `step` attribute to specify the incrementor or decrementor difference and `value` to set the default value. ```js preview-story export const steps = () => html`

Min: 100, Value: 200, Step: 100

`; ``` ## Range Use `min` and `max` attribute to specify range. ```js preview-story export const range = () => html`

Min: 200, Max: 500, Step: 100

`; ```