aboutsummaryrefslogtreecommitdiffstats
path: root/src/views/History/BigChip.jsx
blob: 49873675b3ee84e0c7a71c894d92746a19dfab10 (plain) (blame)
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
import Chip from '@mui/joy/Chip'
import * as React from 'react'

function BigChip(props) {
  return (
    <Chip
      variant='outlined'
      color='primary'
      size='lg' // Adjust to your desired size
      sx={{
        fontSize: '1rem', // Example: Increase font size
        padding: '1rem', // Example: Increase padding
        height: '1rem', // Adjust to your desired height
        // Add other custom styles as needed
      }}
      {...props}
    >
      {props.children}
    </Chip>
  )
}

export default BigChip
BigChip.propTypes = {
  ...Chip.propTypes,
}