2020-07-03 14:50:37 -07:00
|
|
|
import styled from 'styled-components/macro';
|
|
|
|
import tw from 'twin.macro';
|
|
|
|
|
2020-07-04 17:15:49 -07:00
|
|
|
export default styled.div<{ $hoverable?: boolean }>`
|
2020-10-03 16:25:39 -07:00
|
|
|
${tw`flex rounded no-underline text-neutral-200 items-center bg-neutral-700 p-4 border border-transparent transition-colors duration-150 overflow-hidden`};
|
2022-06-26 15:13:52 -04:00
|
|
|
|
|
|
|
${(props) => props.$hoverable !== false && tw`hover:border-neutral-500`};
|
2020-07-03 14:50:37 -07:00
|
|
|
|
2020-10-03 16:25:39 -07:00
|
|
|
& .icon {
|
2020-07-03 14:50:37 -07:00
|
|
|
${tw`rounded-full bg-neutral-500 p-3`};
|
|
|
|
}
|
|
|
|
`;
|