refactor: rename files (#1034)

This commit is contained in:
Aman Harwara
2022-05-20 23:20:05 +05:30
committed by GitHub
parent 95d539587a
commit 1643311d08
92 changed files with 98 additions and 98 deletions

View File

@@ -0,0 +1,23 @@
interface BubbleProperties {
label: string
selected: boolean
onSelect: () => void
}
const styles = {
base: 'px-2 py-1.5 text-center rounded-full cursor-pointer transition border-1 border-solid active:border-info active:bg-info active:color-neutral-contrast',
unselected: 'color-neutral border-secondary',
selected: 'border-info bg-info color-neutral-contrast',
}
const Bubble = ({ label, selected, onSelect }: BubbleProperties) => (
<span
role="tab"
className={`bubble ${styles.base} ${selected ? styles.selected : styles.unselected}`}
onClick={onSelect}
>
{label}
</span>
)
export default Bubble