import React from 'react'; import { Normalize } from '../../utils/normalize'; import { AnimatedBox, Box } from '../Box'; import type { IOpacity } from './skeleton'; interface IProps extends IOpacity { nItems?: number; } export const AutoComplete = ({ opacity, nItems = 1 }: IProps) => { const items = [...Array(nItems).keys()].map((_, index) => ( )); return <>{items}; };