Skip to content
This repository has been archived by the owner on Nov 29, 2023. It is now read-only.

Commit

Permalink
icons: add cam_off
Browse files Browse the repository at this point in the history
  • Loading branch information
arnemolland committed Feb 22, 2022
1 parent 9d3d5de commit cf0301c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/lib/components/icons/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ export const IconData = {
bracket_filled: 'M15 8v3h-2V4H9V1H1v8h8V6h2v12H9v-3H1v8h8v-3h4v-7h2v3h8V8Z',
broadcast:
'M2.87 9.7 6.93 2H4.56L.5 9.7 4.35 17h2.37Zm4.73 0L10.08 5H7.71L5.23 9.7 7.5 14h2.37Zm13.53 0L17.07 2h2.37l4.06 7.7-3.85 7.3h-2.37Zm-4.74 0L13.92 5h2.37l2.47 4.7-2.27 4.3h-2.36ZM13.11 22v-8H11v8Z',
cam_off:
'M9.56,5l2,2H15v3.44l2,2V5Zm3.18,12H3V7.26l-2-2V19H14.74ZM19,10l4-4V18l-4-4Zm4.56,12H20.74L.74,2H3.56Z',
calendar:
'M18 3V1h-2v2H8V1H6v2H2v19h20V3Zm2 17H4V7h16ZM8 11H6V9h2Zm4 0h-2V9h2Zm4 0h-2V9h2Zm-8 4H6v-2h2Zm4 0h-2v-2h2Z',
calendar_filled:
Expand Down
10 changes: 9 additions & 1 deletion src/lib/providers/AmbianceProvider.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,15 @@ const ColorBox = styled.div<{ color?: string; size?: string }>`
box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
`

const AmbientBox = ({ children, color, elevation }: { children?: ReactNode, color?: string, elevation?: number }) => {
const AmbientBox = ({
children,
color,
elevation
}: {
children?: ReactNode
color?: string
elevation?: number
}) => {
return (
<Ambiance color={color} elevation={elevation}>
<AmbianceContext.Consumer>
Expand Down

0 comments on commit cf0301c

Please sign in to comment.