Metadata-Version: 2.1
Name: streamlit-image-button
Version: 0.2.2.10
Summary: Streamlit component that allows you to create image buttons.
Home-page: 
Author: Anthony Pecquenard
Author-email: anthony.pecquenard@ens-lyon.fr
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: streamlit>=0.63
Provides-Extra: devel
Requires-Dist: wheel; extra == "devel"
Requires-Dist: pytest==7.4.0; extra == "devel"
Requires-Dist: playwright==1.39.0; extra == "devel"
Requires-Dist: requests==2.31.0; extra == "devel"
Requires-Dist: pytest-playwright-snapshot==1.0; extra == "devel"
Requires-Dist: pytest-rerunfailures==12.0; extra == "devel"

# streamlit-custom-component

Streamlit component that allows you to add clickable buttons with .png or .jpg image replacing text.

## Installation instructions

```sh
pip install streamlit-image-button
```

## Usage instructions

```python
import streamlit as st

from st_image_button import st_image_button

st_image_button("Title", "icon.png", "20px", "outlined", onClick)
```
