UNPKG

@momentum-ui/react-collaboration

Version:

Cisco Momentum UI Framework for React Collaboration Applications

11 lines 496 B
import React from 'react'; import { Input } from '@momentum-ui/react-collaboration'; export default function InputWarning() { return (React.createElement(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" })); } //# sourceMappingURL=Warning.js.map