mirror of
https://github.com/duckietm/Nitro-V3.git
synced 2026-06-20 15:36:18 +00:00
9 lines
365 B
TypeScript
9 lines
365 B
TypeScript
import { FC } from 'react';
|
|
import { WiredFurniType } from '../../../../api';
|
|
import { WiredTriggerBaseView } from './WiredTriggerBaseView';
|
|
|
|
export const WiredTriggerAvatarWalksOffFurniView: FC<{}> = props =>
|
|
{
|
|
return <WiredTriggerBaseView hasSpecialInput={ false } requiresFurni={ WiredFurniType.STUFF_SELECTION_OPTION_BY_ID_OR_BY_TYPE } save={ null } />;
|
|
};
|