File size: 1,670 Bytes
a03b3ba
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import { Meta } from "@storybook/blocks";

<Meta title="Introduction" />

<style>
	{`
    img {
      margin: 1rem;
      display: flex;
      justify-content: left;

      @media (max-width: 600px) {
        width: 200px;
      }
    }

    .container {
      margin: 0 auto;
      padding: 0 1rem;
    }

    .heading {
      font-size: 2rem;
      margin: 0 auto;
    }

    .subheading {
      font-size: 1rem;
      margin: 1rem auto;
    }

    ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }

    li a {
      color: #ff7c01 !important;
    }
  `}
</style>

<img src="./gradio.svg" alt="Gradio Logo" />
<div class="container">

<div class="heading">Welcome to the Gradio Storybook</div>

This is Gradio's component library. It is a collection of reusable components that are used to build Gradio interfaces.
Here you'll find documentation for each component, the props they take, and the visual variations they have, as well as some examples of how they can be used.
This is still a work in progress and we welcome any contributions.

<div class="divider" />

<div class="subheading">Resources</div>
<ul>

  <li><a href="https://gradio.app">Documentation</a></li>
  <li><a href="https://gradio.app/guides/">Guides</a></li>
  <li><a href="https://github.com/gradio-app/gradio">GitHub</a></li>
  <li><a href="https://discord.com/invite/feTf9x3ZSB">Discord</a></li>
  <li><a href="https://discuss.huggingface.co/c/gradio/26">Hugging Face Forum</a></li>
</ul>

<div class="subheading">Feedback</div>
If you have any questions, issues, or feedback on our components, please refer to our Discord or raise an issue in our GitHub repo. 
</div>