updating branch

This commit is contained in:
Linna Luo 2021-05-11 23:38:07 -04:00
commit 010b6e120a
1 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ interface Props {
time: string; time: string;
} }
const DropDownIcon = ( const dropDownIcon = (
<svg <svg
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
width="14" width="14"
@ -45,7 +45,7 @@ export const MiniEventCard: React.FC<Props> = ({
<p className={styles.shortDescription}>{descriptionShort}</p> <p className={styles.shortDescription}>{descriptionShort}</p>
</div> </div>
<p className={styles.details}>View details {DropDownIcon}</p> <p className={styles.details}>View details {dropDownIcon}</p>
</summary> </summary>
<div className={styles.longDescription}>{description}</div> <div className={styles.longDescription}>{description}</div>