2021-10-26 21:26:32 +08:00
|
|
|
import styled from 'styled-components';
|
|
|
|
import { TextElipsis } from '/imports/ui/stylesheets/styled-components/placeholders';
|
2021-10-26 21:37:23 +08:00
|
|
|
import { colorWhite } from '/imports/ui/stylesheets/styled-components/palette';
|
2021-10-26 21:26:32 +08:00
|
|
|
|
|
|
|
const BannerTextColor = styled(TextElipsis)`
|
2021-10-26 21:37:23 +08:00
|
|
|
color: ${colorWhite};
|
2021-10-26 21:26:32 +08:00
|
|
|
`;
|
|
|
|
|
|
|
|
export default {
|
|
|
|
BannerTextColor,
|
|
|
|
};
|