(props: any)
| 1995 | }; |
| 1996 | |
| 1997 | const Example56 = (props: any) => { |
| 1998 | return ( |
| 1999 | <div> |
| 2000 | <InputGroup size="lg"> |
| 2001 | <InputGroupText>@lg</InputGroupText> |
| 2002 | <Input /> |
| 2003 | </InputGroup> |
| 2004 | <br /> |
| 2005 | <InputGroup> |
| 2006 | <InputGroupText>@normal</InputGroupText> |
| 2007 | <Input /> |
| 2008 | </InputGroup> |
| 2009 | <br /> |
| 2010 | <InputGroup size="sm"> |
| 2011 | <InputGroupText>@sm</InputGroupText> |
| 2012 | <Input /> |
| 2013 | </InputGroup> |
| 2014 | </div> |
| 2015 | ); |
| 2016 | }; |
| 2017 | |
| 2018 | const Example57 = (props: any) => { |
| 2019 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…