import React from 'react'; import type { $RemoveChildren } from '../../types'; import { Button, ChevronIcon } from '../..'; type Props = $RemoveChildren; const AppBarBackAction = ({ disabled, ...rest }: Props) => { return ( ); }; export default AppBarBackAction;