Skip to content

Instantly share code, notes, and snippets.

import React from "react";
import "./styles.scss";
export default function Component({ children, ...rest }) {
return (
<div className="container flex space_between" {...rest}>
<div className="textCenter secondaryColor">{children}</div>
</div>
);
}
import React from "react";
import styles from "./styles.module.scss";
import { flex, space_between } from "../assets/css/_flex.module.scss";
import { classes } from 'utils';
export default function Component({ children, ...rest }) {
return (
<div className={classes(styles.container, flex, space_between)} {...rest}>
<div>{children}</div>
</div>
@ryancheta
ryancheta / pixster-logo.svg
Created July 22, 2020 20:59
pixster-logo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ryancheta
ryancheta / message-icon.svg
Last active July 14, 2020 07:00
message-icon
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ryancheta
ryancheta / comment-icon.svg
Last active July 14, 2020 06:50
comment-icon
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ryancheta
ryancheta / add-media.svg
Last active July 14, 2020 04:47
add-media
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ryancheta
ryancheta / bookmarke-favorite-wide.svg
Created July 14, 2020 04:20
bookmark-favorite-wide
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.