UNPKG

@momentum-ui/react-collaboration

Version:

Cisco Momentum UI Framework for React Collaboration Applications

21 lines (19 loc) 455 B
import React from 'react'; import { Input } from '@momentum-ui/react-collaboration'; export default function InputWarning() { return ( <Input name="inputWarning" label="Warning Input" htmlId="inputWarning" containerSize="small-12 medium-6" messageArr={[ { message: 'This is where the warning message would be.', type: 'warning', }, ]} value="Warning Text" /> ); }