Skip to content

Commit

Permalink
update commits
Browse files Browse the repository at this point in the history
Signed-off-by: Antonette Caldwell <[email protected]>
  • Loading branch information
nebula-aac committed Aug 28, 2023
2 parents d20469d + b82ad58 commit 39a7e54
Show file tree
Hide file tree
Showing 14 changed files with 122 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/components/src/accordion.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React from 'react';
import { Accordion as MuiAccordion, AccordionProps } from '@mui/material';

export function Accordion(props: AccordionProps) {
return <MuiAccordion {...props} />;
}
6 changes: 6 additions & 0 deletions packages/components/src/accordionactions.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React from 'react';
import { AccordionActions as MuiAccordionActions, AccordionActionsProps } from '@mui/material';

export function AccordionActions(props: AccordionActionsProps) {
return <MuiAccordionActions {...props} />;
}
6 changes: 6 additions & 0 deletions packages/components/src/accordiondetails.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React from 'react';
import { AccordionDetails as MuiAccordionDetails, AccordionDetailsProps } from '@mui/material';

export function AccordionDetails(props: AccordionDetailsProps) {
return <MuiAccordionDetails {...props} />;
}
6 changes: 6 additions & 0 deletions packages/components/src/accordionsummary.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React from 'react';
import { AccordionSummary as MuiAccordionSummary, AccordionSummaryProps } from '@mui/material';

export function AccordionSummary(props: AccordionSummaryProps) {
return <MuiAccordionSummary {...props} />;
}
6 changes: 6 additions & 0 deletions packages/components/src/avatargroup.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React from 'react';
import { AvatarGroup as MuiAvatarGroup, AvatarGroupProps } from '@mui/material';

export function AvatarGroup(props: AvatarGroupProps) {
return <MuiAvatarGroup {...props} />;
}
6 changes: 6 additions & 0 deletions packages/components/src/backdrop.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React from 'react';
import { Backdrop as MuiBackdrop, BackdropProps } from '@mui/material';

export function Backdrop(props: BackdropProps) {
return <MuiBackdrop {...props} />;
}
6 changes: 6 additions & 0 deletions packages/components/src/badge.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React from 'react';
import { Badge as MuiBadge, BadgeProps } from '@mui/material';

export function Badge(props: BadgeProps) {
return <MuiBadge {...props} />;
}
6 changes: 6 additions & 0 deletions packages/components/src/checkbox.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React from 'react';
import { Checkbox as MuiCheckbox, CheckboxProps } from '@mui/material';

export function Checkbox(props: CheckboxProps) {
return <MuiCheckbox {...props} />;
}
6 changes: 6 additions & 0 deletions packages/components/src/radiogroup.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React from 'react';
import { RadioGroup as MuiRadioGroup, RadioGroupProps } from '@mui/material';

export function RadioGroup(props: RadioGroupProps) {
return <MuiRadioGroup {...props} />;
}
6 changes: 6 additions & 0 deletions packages/components/src/slide.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React from 'react';
import { Slide as MuiSlide, SlideProps } from '@mui/material';

export function Slide(props: SlideProps) {
return <MuiSlide {...props} />;
}
13 changes: 13 additions & 0 deletions packages/svg/src/icons/AddIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { FC } from 'react';
import { IconProps } from './types';

export const AddIcon: FC<IconProps> = ({ width, height, ...props }) => {
return (
<svg height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" {...props}>
<path d="M0 0h24v24H0z" fill="none" />
<path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z" />
</svg>
);
};

export default AddIcon;
13 changes: 13 additions & 0 deletions packages/svg/src/icons/AddIconCircleBorder.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { FC } from 'react';
import { IconProps } from './types';

export const AddIconCircleBordered: FC<IconProps> = ({ width, height, color, ...props }) => {
return (
<svg width="24" height="24" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg">
<path d="M0 0h48v48h-48z" fill="none" />
<path d="M26 14h-4v8h-8v4h8v8h4v-8h8v-4h-8v-8zm-2-10c-11.05 0-20 8.95-20 20s8.95 20 20 20 20-8.95 20-20-8.95-20-20-20zm0 36c-8.82 0-16-7.18-16-16s7.18-16 16-16 16 7.18 16 16-7.18 16-16 16z" />
</svg>
);
};

export default AddIconCircleBordered;
18 changes: 18 additions & 0 deletions packages/svg/src/icons/BellIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { FC } from 'react';
import { IconProps } from './types';

export const BellIcon: FC<IconProps> = ({ width, height, color, ...props }) => {
return (
<svg
width={width}
height={height}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
{...props}
>
<path d="M12 22c1.1 0 2-.9 2-2h-4c0 1.1.89 2 2 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z" />
</svg>
);
};

export default BellIcon;
18 changes: 18 additions & 0 deletions packages/svg/src/icons/ChatIcon.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { FC } from 'react';
import { IconProps } from './types';

export const ChatIcon: FC<IconProps> = ({ width, height, color, ...props }) => {
return (
<svg
width={width}
height={height}
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 30 30"
{...props}
>
<path d="M15 3C7.82 3 2 7.925 2 14c0 3.368 1.793 6.378 4.611 8.396.072 1.536-.166 3.657-2.285 4.635a.5.5 0 0 0-.004.002A.5.5 0 0 0 4 27.5a.5.5 0 0 0 .5.5l.035-.002a.5.5 0 0 0 .008 0c2.434-.016 4.5-1.331 5.926-2.72.452-.442 1.082-.659 1.703-.542.91.173 1.856.264 2.828.264 7.18 0 13-4.925 13-11S22.18 3 15 3z" />
</svg>
);
};

export default ChatIcon;

0 comments on commit 39a7e54

Please sign in to comment.