import * as React from "react"; export type NextProps = { color?: string; }; const Next: React.FC = ({ color = "#000", ...props }) => ( ); export default Next;