Metadata-Version: 2.1
Name: st_tabs
Version: 0.1.1
Summary: Streamlit component that allows you to do customize your tabbar as per your need
Home-page: https://github.com/PrathamJha1/st_tabs
Author: Pratham Jha
Author-email: prathamjha5683@gmail.com
License: UNKNOWN
Description: # st_tabs
        
        Streamlit component that allows you to do change the tabbar as per your need
        
        The component has implemented Material UI Tab Bar in order to create simple yet smotth interface with the functionality to change its background color,textcolor,hoverstate color,font-size and font-weight respectively.
        
        The component returns the index of the Tab that is currenly selected/active.
        
        pypi package link [st_tabs](https://pypi.org/project/st-tabs/)
        
        
        ## Installation instructions
        
        
        ```sh
        pip install st_tabs
        ```
        
        ## Usage instructions
        
        ```python
        import streamlit as st
        
        from st_tabs import TabBar
        
        component1=  TabBar(tabs=["Tab1","Tab2"],default=0,background = "red",color="grey",activeColor="blue",fontSize="20px")
        #Handle your tabbar usecases here.
        if(component1 == 0):
            st.write("Hooray! we are in Tab1")
        else:
            st.write("Yippee! We are in Tab2 ")
        ```
        
        
        Please feel free to give feedback and suggestions to make it better.
        
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Provides-Extra: devel
