Skip to content

Instantly share code, notes, and snippets.

@hboylan
Created June 21, 2021 19:42
Show Gist options
  • Save hboylan/c1822a9fddaae1fa1a4927d7fc347d57 to your computer and use it in GitHub Desktop.
Save hboylan/c1822a9fddaae1fa1a4927d7fc347d57 to your computer and use it in GitHub Desktop.
export const Alert = styled.div<AlertStyle>`
background-color: ${({ type }) => secondaryAlertStyles[type]};
border-radius: ${({ theme }) => theme.shape!.borderRadius};
box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
display: flex;
opacity: ${({ active }) => (active ? 1 : 0)};
overflow: hidden;
${AccentBar} {
background-color: ${({ type }) => primaryAlertStyles[type]};
}
`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment