mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-08 14:43:24 +00:00
11 lines
165 B
TypeScript
11 lines
165 B
TypeScript
import styled from '@emotion/styled';
|
|
|
|
const Form = styled.form({
|
|
width: '100%',
|
|
display: 'flex',
|
|
gap: '1em',
|
|
flexDirection: 'column',
|
|
});
|
|
|
|
export default Form;
|