UNPKG

rmwc

Version:

A thin React wrapper for Material Design (Web) Components

15 lines (12 loc) 325 B
// @flow import * as React from 'react'; export const NotchedOutline = () => ( <div className="mdc-notched-outline"> <svg> <path className="mdc-notched-outline__path" /> </svg> </div> ); export const NotchedOutlineIdle = ({ ...rest }: {}) => ( <div {...rest} className="mdc-notched-outline__idle" /> );