Skip to content

Commit

Permalink
Imported from brave-ui: Merge pull request #246 from brave/icon-updates
Browse files Browse the repository at this point in the history
 Icon updates
  • Loading branch information
cezaraugusto authored Nov 6, 2018
2 parents 0283a7a + e492fee commit cbb8f09
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/features/shields/icons/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import styled from '../../../theme'

import { ComponentType } from 'react'
import {
AlertShieldIcon,
ShieldAlertIcon,
OpenNewIcon,
CaratDownIcon,
CaratUpIcon,
Expand All @@ -22,38 +22,38 @@ export const LinkIcon = styled(OpenNewIcon as ComponentType)`
color: ${palette.blue200};
`

export const ShieldIcon = styled(AlertShieldIcon as ComponentType)`
export const ShieldIcon = styled(ShieldAlertIcon as ComponentType)`
width: 48px;
height: 48px;
color: ${palette.grey600};
`

export const ShowMoreIcon = styled(CaratDownIcon as ComponentType)`
width: 24px;
height: 24px;
width: 16px;
height: 16px;
color: ${palette.blue200};
`

export const ShowLessIcon = styled(CaratUpIcon as ComponentType)`
width: 24px;
height: 24px;
width: 16px;
height: 16px;
color: ${palette.blue200};
`

export const CloseIcon = styled(CloseStrokeIcon as ComponentType)`
width: 24px;
height: 24px;
width: 16px;
height: 16px;
color: ${palette.blue200};
`

export const BlockedScriptsIcon = styled(CloseCircleIcon as ComponentType)`
width: 24px;
height: 24px;
width: 16px;
height: 16px;
color: ${palette.red500};
`

export const AllowedScriptsIcon = styled(CheckCircleIcon as ComponentType)`
width: 24px;
height: 24px;
width: 16px;
height: 16px;
color: ${palette.green500};
`

0 comments on commit cbb8f09

Please sign in to comment.