import { Meta } from '@storybook/addon-docs';
import Link from '@cloudscape-design/components/link';
import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter';
# Migrating from NorthStar legacy - TimePicker
There is not a matched TimePicker component avaliable on Cloudscape. However,
you can use Cloudscape TimeInput component to allow users enter an absolute time value.
If the TimePicker is used in a Form setting, it is recommended to
use NorthStar v2 FormRenderer component
to build the form from JSON schema.
## Update Import
```diff
- import TimePicker from 'aws-northstar/components/TimePicker';
+ import TimeInput from '@cloudscape-design/components/time-input'';
```
export const Component = () => {
return ;
};