source: src/components/label/label.tsx@ 5d6f37a

main
Last change on this file since 5d6f37a was 5d6f37a, checked in by Naum Shapkarovski <naumshapkarovski@…>, 7 weeks ago

add customer

  • Property mode set to 100644
File size: 1.1 KB
Line 
1import { forwardRef } from 'react';
2// @mui
3import { useTheme } from '@mui/material/styles';
4import Box from '@mui/material/Box';
5//
6import { StyledLabel } from './styles';
7import { LabelProps } from './types';
8
9// ----------------------------------------------------------------------
10
11const Label = forwardRef<HTMLSpanElement, LabelProps>(
12 ({ children, color = 'default', variant = 'soft', startIcon, endIcon, sx, ...other }, ref) => {
13 const theme = useTheme();
14
15 const iconStyle = {
16 width: 16,
17 height: 16,
18 '& svg, img': { width: 1, height: 1, objectFit: 'cover' },
19 };
20
21 return (
22 <StyledLabel
23 ref={ref}
24 component="span"
25 ownerState={{ color, variant }}
26 sx={{
27 ...(startIcon && { pl: 0.75 }),
28 ...(endIcon && { pr: 0.75 }),
29 ...sx,
30 }}
31 theme={theme}
32 {...other}
33 >
34 {startIcon && <Box sx={{ mr: 0.75, ...iconStyle }}> {startIcon} </Box>}
35
36 {children}
37
38 {endIcon && <Box sx={{ ml: 0.75, ...iconStyle }}> {endIcon} </Box>}
39 </StyledLabel>
40 );
41 }
42);
43
44export default Label;
Note: See TracBrowser for help on using the repository browser.